Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bugfix: adjust GitHub actions config so workflow jobs succeed again #13

Merged
merged 6 commits into from
Apr 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 9 additions & 7 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,13 @@ jobs:
- uses: actions/checkout@v2
- name: Setup python
uses: actions/setup-python@v1
with:
python-version: 3.12

- name: Install Poetry
uses: snok/install-poetry@v1.1.1
uses: snok/install-poetry@v1.3.3
with:
version: 1.1.4
version: 1.3.1
virtualenvs-create: true
virtualenvs-in-project: true

Expand All @@ -41,7 +43,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.6', '3.7', '3.8' ]
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11', '3.12' ]
steps:
- uses: actions/checkout@v2
- name: Setup python
Expand All @@ -51,9 +53,9 @@ jobs:
architecture: x64

- name: Install Poetry
uses: snok/install-poetry@v1.1.1
uses: snok/install-poetry@v1.3.3
with:
version: 1.1.4
version: 1.3.1
virtualenvs-create: true
virtualenvs-in-project: true

Expand All @@ -77,10 +79,10 @@ jobs:
steps:
- uses: actions/checkout@master
- name: Build
uses: abatilo/actions-poetry@v1.5.0
uses: abatilo/actions-poetry@v2.1.6
with:
python_version: 3.8.0
poetry_version: 1.0
poetry_version: 1.3
working_directory: .
args: build
- name: Publish package
Expand Down
Loading
Loading