Skip to content

Commit 0d239d3

Browse files
committed
add ci to build website and ensure it's working
Signed-off-by: Augustin Husson <[email protected]>
1 parent 2260eb3 commit 0d239d3

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/website.yaml

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

0 commit comments

Comments
 (0)