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 b610f1b commit 86f4283Copy full SHA for 86f4283
.github/workflows/linkcheck.yml
@@ -0,0 +1,21 @@
1
+name: Link Check
2
+on: [push, pull_request]
3
+
4
+jobs:
5
+ linkcheck:
6
+ runs-on: ubuntu-latest
7
+ steps:
8
+ - uses: actions/checkout@v2
9
+ - name: Setup python
10
+ uses: actions/setup-python@v2
11
+ with:
12
+ python-version: 3.6
13
+ architecture: x64
14
+ - uses: actions/cache@v1
15
16
+ path: ~/.cache/pip
17
+ key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
18
+ - run: pip install -r requirements.txt
19
+ - run: cd ./docs/ && make dirhtml
20
+ - run: cd ./docs/ && make linkcheck
21
.travis.yml
0 commit comments