Skip to content

Commit

Permalink
Create ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Tars4815 committed May 6, 2024
1 parent 0acb9f9 commit 1bbb147
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: ci
on:
push:
branches:
- master
- main
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.x
- uses: actions/cache@v2
with:
key: ${{ github.ref }}
path: .cache
- run: pip install mkdocs
- run: pip install mkdocs-material
- run: pip install mkdocs-static-i18n
- run: pip install mkdocs-jupyter
- run: mkdocs gh-deploy --force

0 comments on commit 1bbb147

Please sign in to comment.