We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents de5a5e8 + ba01aca commit 58fd31eCopy full SHA for 58fd31e
.github/workflows/test-docs.yml
@@ -0,0 +1,29 @@
1
+name: Test docs
2
+
3
+on:
4
+ workflow_dispatch:
5
+ push:
6
+ branches:
7
+ - main
8
+ pull_request:
9
10
11
12
+jobs:
13
+ docs:
14
+ runs-on: ubuntu-latest
15
+ strategy:
16
+ matrix:
17
+ python-version: [3.8]
18
+ steps:
19
+ - uses: actions/checkout@v2
20
+ - name: Set up Python ${{ matrix.python-version }}
21
+ uses: actions/setup-python@v2
22
+ with:
23
+ python-version: ${{ matrix.python-version }}
24
+ - name: Install dependencies
25
+ run: |
26
+ python -m pip install --upgrade pip
27
+ pip install --upgrade --upgrade-strategy eager --no-cache-dir .[docs]
28
+ - name: Build docs
29
+ run: make -C docs html
0 commit comments