We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 909e1b0 commit d3bcc5bCopy full SHA for d3bcc5b
1 file changed
.github/workflows/build.yml
@@ -0,0 +1,32 @@
1
+name: Build Documentation
2
+
3
+on:
4
+ pull_request:
5
+ branches:
6
+ - main
7
+ push:
8
9
10
11
+jobs:
12
+ docs:
13
+ name: Build
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - uses: 'actions/checkout@v3'
17
18
+ - uses: 'actions/setup-python@v4'
19
+ with:
20
+ python-version: '3.10'
21
22
+ - run: |
23
+ set -e
24
+ python --version
25
+ python -m pip install --upgrade pip tox
26
+ name: Setup Environment
27
28
+ - id: build
29
+ run: |
30
+ tox -e build
31
+ name: Run Tox
32
0 commit comments