Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
christianlouis committed Feb 11, 2025
2 parents f98f77e + 44ffa3e commit bb510b7
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,23 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest flake8 black mypy pylint
- name: Run Tests
run: pytest tests/
# - name: Run Tests
# run: pytest tests/

- name: Run Linter (Flake8)
run: flake8 app/
continue-on-error: true

- name: Run Code Formatter (Black)
run: black --check app/
continue-on-error: true

- name: Run Type Checker (Mypy)
run: mypy app/
continue-on-error: true

- name: Run Linter (Pylint)
run: pylint app/
continue-on-error: true

0 comments on commit bb510b7

Please sign in to comment.