aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorPherkel2023-09-12 14:19:15 +0200
committerGitHub2023-09-12 14:19:15 +0200
commit7a9a6c783e69b5a537a3d3f5bfe8d5fdc656c807 (patch)
tree0725631b9b68aeb65b292420a15941dcfa3fc04f /.github
parentf9846193289c81d89342b6a36e951605c2cfa189 (diff)
parent7b71dab87591e04d874cd636614450b0e65e3f2b (diff)
Merge pull request #37 from Algo-Boys/fix/ultimate
Fix/ultimate
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/format.yml13
1 files changed, 3 insertions, 10 deletions
diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml
index 7138f69..a939663 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 -r requirements.txt
- 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