This commit is contained in:
Christian Krakau-Louis
2025-02-12 00:04:05 +01:00
+16 -2
View File
@@ -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