We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 950c773 commit d3ae678Copy full SHA for d3ae678
1 file changed
.github/workflows/python-app.yml
@@ -13,9 +13,6 @@ jobs:
13
build:
14
runs-on: ubuntu-latest
15
environment: Scheduled Testing
16
- strategy:
17
- matrix:
18
- python-version: ["3.10", "3.11", "3.12"]
19
20
steps:
21
@@ -24,11 +21,13 @@ jobs:
24
- name: Install poetry
25
22
run: pipx install "poetry == 1.8.5"
26
23
+ - name: Check poetry.lock file
+ run: poetry check
+
27
- name: Install dependencies
28
run: |
29
set -e
30
poetry cache clear --no-interaction --all .
31
- poetry check
32
poetry install --no-interaction --with dev
33
34
- name: Lint formatting
0 commit comments