-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removed Poetry pinning from template Actions
- Loading branch information
1 parent
701926e
commit 44f170e
Showing
2 changed files
with
5 additions
and
10 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 |
---|---|---|
|
@@ -11,14 +11,12 @@ jobs: | |
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Install Poetry | ||
run: pipx install poetry | ||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.8 | ||
- name: Install Poetry | ||
uses: abatilo/[email protected] | ||
with: | ||
poetry-version: 1.2 | ||
- name: Verify versioning | ||
run: | | ||
[ "$(poetry version -s)" == "${GITHUB_REF#refs/tags/v}" ] | ||
|
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 |
---|---|---|
|
@@ -11,19 +11,16 @@ jobs: | |
strategy: | ||
matrix: | ||
os: [ 'ubuntu-20.04' ] | ||
python-version: [ '3.8', '3.9', '3.10' ] | ||
poetry-version: [ '1.2' ] | ||
python-version: [ '3.8', '3.9', '3.10', '3.11' ] | ||
runs-on: {{ '${{ matrix.os }}' }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Install Poetry | ||
run: pipx install poetry | ||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: {{ '${{ matrix.python-version }}' }} | ||
- name: Install Poetry | ||
uses: abatilo/[email protected] | ||
with: | ||
poetry-version: {{ '${{ matrix.poetry-version }}' }} | ||
- name: Install dependencies | ||
run: poetry install | ||
- name: Run tests | ||
|