Skip to content

Commit 05f4c8b

Browse files
committed
Add CI
1 parent bc2952f commit 05f4c8b

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

.github/workflows/CI.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Verify MkDocs
2+
on:
3+
pull_request:
4+
jobs:
5+
build:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@v4
9+
- uses: actions/setup-python@v5
10+
with:
11+
python-version: 3.x
12+
- run: pip install -r requirements.txt
13+
- run: mkdocs build -v -s

0 commit comments

Comments
 (0)