Skip to content

Commit f549d9b

Browse files
committed
ci workflow
1 parent 75d232d commit f549d9b

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/ci.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: ci
2+
on:
3+
pull_request:
4+
branches:
5+
- master
6+
- main
7+
jobs:
8+
test:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v2
12+
- uses: actions/setup-python@v2
13+
with:
14+
python-version: 3.x
15+
- run: pip install wheel
16+
- run: pip install -r requirements.txt
17+
- run: mkdocs build --strict

0 commit comments

Comments
 (0)