Skip to content

Merge pull request #64 from neutrinoceros/deactivate-broken-ci #60

Merge pull request #64 from neutrinoceros/deactivate-broken-ci

Merge pull request #64 from neutrinoceros/deactivate-broken-ci #60

Workflow file for this run

name: lint_python
on: [pull_request, push]
jobs:
lint_python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- run: pipx run pre-commit run --all-files
- run: pip install flake8 mypy pytest safety
- run: flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
- run: flake8 . --count --exit-zero --max-complexity=10 --max-line-length=88 --show-source --statistics
- run: pip install -r requirements.txt || true
- run: mypy --ignore-missing-imports . || true
- run: pytest . || true
- run: pytest --doctest-modules . || true
- run: shopt -s globstar || true
- run: safety check