Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,20 @@ jobs:

# Static analysis tools
- name: Static Code Analysis
if: runner.os == 'Linux' && matrix.python-version != '3.8'
if: runner.os == 'Linux'
run: |
pip install mypy==1.19.1 flake8==7.3.0
python static_analysis.py

- name: Run tests
run: python -m pytest -s -rs

- name: Check README
if: runner.os == 'Linux'
run: |
python scripts/readme.py
git diff --exit-code README.md

release:
runs-on: ubuntu-latest

Expand Down
Loading
Loading