Skip to content

Commit 3c1f55d

Browse files
committed
Fix pipeline
1 parent deef9ad commit 3c1f55d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/pytest.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
max-parallel: 4
1313
matrix:
14-
python-version: [3.6, 3.7, 3.8, 3.9, 3.10]
14+
python-version: ["3.7", "3.8", "3.9", "3.10"]
1515

1616
steps:
1717
- name: Cloning repo
@@ -32,9 +32,9 @@ jobs:
3232
3333
- name: Check Formatting
3434
run: |
35-
black --check .
36-
flake8 .
37-
isort --check .
35+
poetry run black --check .
36+
poetry run flake8 .
37+
poetry run isort --check .
3838
3939
- name: Run Tests
40-
run: pytest
40+
run: poetry run pytest

0 commit comments

Comments
 (0)