From 1df4a91b64dc5f2a1714b22f94537b06d1f78902 Mon Sep 17 00:00:00 2001 From: Christian Krakau-Louis Date: Tue, 11 Feb 2025 23:45:26 +0100 Subject: [PATCH] Update tests.yaml --- .github/workflows/tests.yaml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 0bc2d723..f12cc6bd 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -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/