File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -13,14 +13,15 @@ jobs:
13
13
permissions :
14
14
contents : read # for actions/checkout to fetch code
15
15
pull-requests : read # for SonarSource/sonarcloud-github-action to determine which PR to decorate
16
+ env :
17
+ POETRY_VERSION : 2.1.1
16
18
strategy :
17
19
# By default, GitHub will maximize the number of jobs run in parallel
18
20
# depending on the available runners on GitHub-hosted virtual machines.
19
21
# max-parallel: 8
20
22
fail-fast : false
21
23
matrix :
22
- python-version : [ "3.9", "3.10", "3.11", "3.12" ]
23
- poetry-version : [ "1.2.2", "1.7.1" ]
24
+ python-version : [ "3.10", "3.11", "3.12" ]
24
25
os : [ ubuntu-22.04, macos-latest, windows-latest ]
25
26
runs-on : ${{ matrix.os }}
26
27
steps :
40
41
- name : Run image
41
42
uses : abatilo/actions-poetry@0dd19c9498c3dc8728967849d0d2eae428a8a3d8 # v4
42
43
with :
43
- poetry-version : ${{ matrix.poetry-version }}
44
+ poetry-version : ${{ env.POETRY_VERSION }}
44
45
45
46
- name : Setup environment
46
47
run : poetry install
You can’t perform that action at this time.
0 commit comments