Skip to content

upgraded gh actions #16

upgraded gh actions

upgraded gh actions #16

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@v4
- uses: actions/setup-python@v5
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