Update tests.yaml

This commit is contained in:
Christian Krakau-Louis
2025-02-11 23:45:26 +01:00
committed by GitHub
parent c21f683c0f
commit 1df4a91b64
+12 -2
View File
@@ -18,9 +18,19 @@ jobs:
run: | run: |
python -m pip install --upgrade pip python -m pip install --upgrade pip
pip install -r requirements.txt pip install -r requirements.txt
pip install pytest flake8 black mypy pylint
- name: Run Tests # - name: Run Tests
run: pytest tests/ # run: pytest tests/
- name: Run Linter (Flake8) - name: Run Linter (Flake8)
run: flake8 app/ 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/