Skip to content

Commit 11e84f5

Browse files
authored
Merge pull request #4 from LeakIX/dw/fix-ci-and-get-rid-of-unofficial-gh-actions
Update CI configuration
2 parents a542f65 + 61683cb commit 11e84f5

1 file changed

Lines changed: 5 additions & 7 deletions

File tree

.github/workflows/action.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,17 @@ jobs:
66
strategy:
77
fail-fast: false
88
matrix:
9-
python-version: [3.7, 3.8, 3.9]
10-
poetry-version: [1.1.11]
11-
os: [ubuntu-18.04, macos-latest, windows-latest]
9+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
10+
poetry-version: ["1.4.0"]
11+
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
1212
runs-on: ${{ matrix.os }}
1313
steps:
1414
- uses: actions/checkout@v2
1515
- uses: actions/setup-python@v2
1616
with:
1717
python-version: ${{ matrix.python-version }}
18-
- name: Run image
19-
uses: abatilo/actions-poetry@v2.0.0
20-
with:
21-
poetry-version: ${{ matrix.poetry-version }}
18+
- name: Install poetry
19+
run: pip install poetry==${{ poetry-version }}
2220
- name: View poetry --help
2321
run: poetry --help
2422
- name: Run poetry install

0 commit comments

Comments
 (0)