Skip to content

Commit d3ae678

Browse files
authored
remove old Python versions; move poetry check to its own step to fail fast (#1253)
1 parent 950c773 commit d3ae678

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

.github/workflows/python-app.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@ jobs:
1313
build:
1414
runs-on: ubuntu-latest
1515
environment: Scheduled Testing
16-
strategy:
17-
matrix:
18-
python-version: ["3.10", "3.11", "3.12"]
1916

2017
steps:
2118

@@ -24,11 +21,13 @@ jobs:
2421
- name: Install poetry
2522
run: pipx install "poetry == 1.8.5"
2623

24+
- name: Check poetry.lock file
25+
run: poetry check
26+
2727
- name: Install dependencies
2828
run: |
2929
set -e
3030
poetry cache clear --no-interaction --all .
31-
poetry check
3231
poetry install --no-interaction --with dev
3332
3433
- name: Lint formatting

0 commit comments

Comments
 (0)