Skip to content

empty project

empty project #1

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@v2
- uses: actions/setup-python@v2
with:
python-version: '3.11'
- 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