Skip to content

Commit 86f4283

Browse files
committed
ci: Travis -> GitHub Actions
1 parent b610f1b commit 86f4283

File tree

2 files changed

+21
-11
lines changed

2 files changed

+21
-11
lines changed

.github/workflows/linkcheck.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
with:
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

Lines changed: 0 additions & 11 deletions
This file was deleted.

0 commit comments

Comments
 (0)