Skip to content

Commit

Permalink
ci: also build with Python v3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
lars-reimann committed Mar 21, 2023
1 parent 74eea1f commit d92d0a4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,12 @@ jobs:
poetry-with-codecov:
strategy:
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
coverage: ${{ matrix.python-version == '3.10' }}
5 changes: 4 additions & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,12 @@ jobs:
poetry-with-codecov:
strategy:
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
coverage: ${{ matrix.python-version == '3.10' }}

0 comments on commit d92d0a4

Please sign in to comment.