diff options
author | Pherkel | 2023-09-11 20:47:45 +0200 |
---|---|---|
committer | Pherkel | 2023-09-11 20:47:45 +0200 |
commit | a4c4fcc20a789834be8bff0a468b0a877ab70364 (patch) | |
tree | 5c733aceba58742bb9972b5951281a45d428194a /.github/workflows/format.yml | |
parent | 0e457b1a553ca2d9f4e2449c620925c634a82efd (diff) |
removed bloat, reduced ci deps
Diffstat (limited to '.github/workflows/format.yml')
-rw-r--r-- | .github/workflows/format.yml | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml index 7138f69..3b3d831 100644 --- a/.github/workflows/format.yml +++ b/.github/workflows/format.yml @@ -13,17 +13,10 @@ jobs: python-version: "3.10" - name: Install dependencies run: | - python -m pip install -U pip poetry - poetry --version - poetry check --no-interaction - poetry config virtualenvs.in-project true - poetry install --no-interaction + python -m pip install black pylint - name: Check for format issues run: | - make format-check + black --check swr2_asr - name: Run pylint run: | - poetry run pylint --fail-under=9 swr2_asr - # run: | - # poetry run mypy --strict swr2_asr - #- name: Run mypy + pylint --fail-under=9 swr2_asr |