Create ci.yml

This commit is contained in:
Josh Creek
2022-10-20 22:32:30 +01:00
committed by GitHub
parent ea19037c3d
commit 66b8051423
+20
View File
@@ -0,0 +1,20 @@
name: ci
on:
push:
branches:
- master
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.x
- uses: actions/cache@v2
with:
key: ${{ github.ref }}
path: .cache
- run: pip install mkdocs-material
- run: mkdocs gh-deploy --force