ci worklflow
Taylor committed
Jul 11, 2023 at 12:49 UTC
8be146d109da9b7cedcd620cedde8adc5f61d857
1 file changed
+25
.github/workflows/ci.yml
new
+25
@@ -0,0 +1,25 @@
1
+name: ci
2
+on:
3
+ push:
4
+ branches:
5
+ - master
6
+ - main
7
+permissions:
8
+ contents: write
9
+jobs:
10
+ deploy:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v3
14
+ - uses: actions/setup-python@v4
15
+ with:
16
+ python-version: 3.x
17
+ - uses: actions/cache@v2
18
+ with:
19
+ key: ${{ github.ref }}
20
+ path: .cache
21
+ - run: pip install mkdocs-material
22
+ - run: pip install mkdocstrings-python
23
+ - run: pip install mkdocstrings
24
+ - run: pip install pillow cairosvg
25
+ - run: mkdocs gh-deploy --force