Skip to content

Commit e0de11d

Browse files
committed
Fix pipeline
1 parent deef9ad commit e0de11d

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.github/workflows/pytest.yml

Lines changed: 5 additions & 6 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
@@ -28,13 +28,12 @@ jobs:
2828
run: |
2929
python -m pip install --upgrade pip
3030
pip install poetry
31-
poetry install
3231
3332
- name: Check Formatting
3433
run: |
35-
black --check .
36-
flake8 .
37-
isort --check .
34+
poetry run black --check .
35+
poetry run flake8 .
36+
poetry run isort --check .
3837
3938
- name: Run Tests
40-
run: pytest
39+
run: poetry run pytest

0 commit comments

Comments
 (0)