-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- get rid of unofficial GH actions - add Python 3.10, 3.11 - Use Ubuntu latest instead of ubuntu 18.04 - Bump up poetry to 1.4.0
- Loading branch information
1 parent
a542f65
commit 61683cb
Showing
1 changed file
with
5 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,19 +6,17 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
python-version: [3.7, 3.8, 3.9] | ||
poetry-version: [1.1.11] | ||
os: [ubuntu-18.04, macos-latest, windows-latest] | ||
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] | ||
poetry-version: ["1.4.0"] | ||
os: ["ubuntu-latest", "macos-latest", "windows-latest"] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Run image | ||
uses: abatilo/[email protected] | ||
with: | ||
poetry-version: ${{ matrix.poetry-version }} | ||
- name: Install poetry | ||
run: pip install poetry==${{ poetry-version }} | ||
- name: View poetry --help | ||
run: poetry --help | ||
- name: Run poetry install | ||
|