Skip to content

Commit

Permalink
Update tests.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
christianlouis authored Feb 11, 2025
1 parent 9695348 commit 1b29fb9
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,19 @@ 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/

- name: Run Code Formatter (Black)
run: black --check app/

- name: Run Type Checker (Mypy)
run: mypy app/

- name: Run Linter (Pylint)
run: pylint app/

0 comments on commit 1b29fb9

Please sign in to comment.