Skip to content

upgrade github actions #13

upgrade github actions

upgrade github actions #13

Workflow file for this run

# build docs from docstrings and markdown-file in folder docs
# publish them as github pages
#
#note for myself
#
# Do not forget to set git branch `gh-pages` as source for github pages.
# This branch auto-updated by `mkdocs gh-deploy`
#
name: static source code checks
on:
push:
branches:
- main
- master
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: 3.x
- run: |
python -m pip install --upgrade pip
pip install -r requirements.dev.txt
python -m pip install -e .
- run: pre-commit run --verbose --all-files