We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8956991 commit e4f13efCopy full SHA for e4f13ef
.github/workflows/test-pull-request.yml
@@ -0,0 +1,26 @@
1
+name: Build docs and test
2
+
3
+on:
4
+ pull_request:
5
+ branches:
6
+ - main
7
8
+jobs:
9
+ build_pull_request:
10
+ runs-on: ubuntu-latest
11
+ if: github.event.pull_request.head.repo.fork == false
12
+ steps:
13
+ - name: Checkout
14
+ uses: actions/checkout@v3
15
+ with:
16
+ submodules: 'recursive'
17
+ - uses: actions/setup-python@v4
18
19
+ python-version: 3.x
20
+ - name: Configure Git
21
+ run: |
22
+ git config user.name "fullstack-devops[bot]"
23
+ git config user.email "fullstack-devops[bot]@users.noreply.github.com"
24
+ - run: |
25
+ pip install -r requirements.txt
26
+ - run: mkdocs build
0 commit comments