We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 835edaf commit 206184eCopy full SHA for 206184e
.github/workflows/release.yml
@@ -16,11 +16,7 @@ on:
16
17
jobs:
18
build:
19
- matrix:
20
- python-version: ["3.11.x"]
21
- poetry-version: ["1.5.0"]
22
- os: [ubuntu-latest]
23
- runs-on: ${{ matrix.os }}
+ runs-on: ubuntu-latest
24
25
steps:
26
- name: Get Docker Images
@@ -38,7 +34,7 @@ jobs:
38
34
- uses: actions/checkout@v3
39
35
- uses: actions/setup-python@v4
40
36
with:
41
- python-version: ${{ matrix.python-version }}
37
+ python-version: "3.11.x"
42
43
- name: Cache Maven packages
44
uses: actions/cache@v3
@@ -50,7 +46,7 @@ jobs:
50
46
- name: Install Poetry
51
47
shell: bash
52
48
run: |
53
- pip install poetry==${{ matrix.poetry-version }}
49
+ pip install poetry=="1.5.0"
54
55
- name: Install Dependencies
56
run: python -m poetry install
0 commit comments