diff options
Diffstat (limited to '.github/workflows')
-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 |