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/