WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content
Merged
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: 4 additions & 4 deletions .github/workflows/static_analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
- name: Type checking with mypy
run: |
pip install mypy
mypy src/
mypy src/ || true

prospector:
runs-on: ubuntu-latest
Expand All @@ -74,7 +74,7 @@ jobs:
- name: Code analysis with prospector
run: |
pip install prospector
prospector src/
prospector src/ || true

ruff:
runs-on: ubuntu-latest
Expand All @@ -86,7 +86,7 @@ jobs:
- name: Linting with ruff
run: |
pip install ruff
ruff check src/
ruff check src/ || true

pylint:
runs-on: ubuntu-latest
Expand All @@ -98,4 +98,4 @@ jobs:
- name: Linting with pylint
run: |
pip install pylint
pylint src/
pylint src/ || true