Skip to content

Commit 59a23e3

Browse files
authored
Create ci.yml
1 parent cdde37e commit 59a23e3

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/ci.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: ci
2+
on:
3+
push:
4+
branches:
5+
- main
6+
7+
permissions:
8+
contents: write
9+
10+
jobs:
11+
deploy:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v2
15+
- uses: actions/setup-python@v2
16+
with:
17+
python-version: 3.x
18+
- run: pip install mkdocs-material mkdocs-open-in-new-tab
19+
- run: mkdocs gh-deploy --force

0 commit comments

Comments
 (0)