Skip to content

Commit

Permalink
CI static code analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
andgineer committed Jul 9, 2023
1 parent adeb72f commit ed74501
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# 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

0 comments on commit ed74501

Please sign in to comment.