Skip to content

Commit

Permalink
ci: also build with Python 3.11 (#32)
Browse files Browse the repository at this point in the history
### Summary of Changes

We support Python 3.11, so we should also ensure the library can be used
with it.
  • Loading branch information
lars-reimann committed Mar 21, 2023
1 parent 92b7394 commit 2bd0448
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,14 @@ on:
jobs:
poetry-with-codecov:
strategy:
fail-fast: false
matrix:
python-version: [ "3.10" ]
python-version:
- "3.10"
- "3.11"
uses: lars-reimann/.github/.github/workflows/poetry-codecov-reusable.yml@main
with:
working-directory: .
python-version: ${{ matrix.python-version }}
module-name: safeds_examples
coverage: ${{ matrix.python-version == '3.10' }}
6 changes: 5 additions & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,14 @@ concurrency:
jobs:
poetry-with-codecov:
strategy:
fail-fast: false
matrix:
python-version: [ "3.10" ]
python-version:
- "3.10"
- "3.11"
uses: lars-reimann/.github/.github/workflows/poetry-codecov-reusable.yml@main
with:
working-directory: .
python-version: ${{ matrix.python-version }}
module-name: safeds_examples
coverage: ${{ matrix.python-version == '3.10' }}

0 comments on commit 2bd0448

Please sign in to comment.