From 558d70f7f80eb1d86d79235a1c60ae9d82c3420d Mon Sep 17 00:00:00 2001 From: Kim Gustyr Date: Thu, 18 Jul 2024 19:07:21 +0100 Subject: [PATCH] remove linting from GHA --- .github/workflows/pytest.yml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index a70a392..a2a3d1a 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -33,14 +33,5 @@ jobs: pip install poetry poetry install --with dev - - name: Check Formatting - run: | - poetry run black --check . - poetry run flake8 . - poetry run isort --check . - - - name: Check Typing - run: poetry run mypy --strict . - - name: Run Tests run: poetry run pytest