Skip to content

Commit bb23645

Browse files
committed
Add github action workflow ci.yml
1 parent 3bf1cf0 commit bb23645

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/ci.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: ci
2+
on:
3+
push:
4+
branches:
5+
- main
6+
jobs:
7+
deploy:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v4
11+
- uses: actions/setup-python@v5
12+
with:
13+
python-version: 3.x
14+
- run: pip install mkdocs-material
15+
- run: pip install mkdocs-git-revision-date-plugin
16+
- run: mkdocs gh-deploy --force

0 commit comments

Comments
 (0)