Skip to content

Commit 424ca23

Browse files
authored
ci: also build with Python 3.11 (#56)
### Summary of Changes We support Python 3.11, so we should also ensure the library can be used with it.
1 parent 74eea1f commit 424ca23

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

.github/workflows/main.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,14 @@ on:
77
jobs:
88
poetry-with-codecov:
99
strategy:
10+
fail-fast: false
1011
matrix:
11-
python-version: [ "3.10" ]
12+
python-version:
13+
- "3.10"
14+
- "3.11"
1215
uses: lars-reimann/.github/.github/workflows/poetry-codecov-reusable.yml@main
1316
with:
1417
working-directory: .
1518
python-version: ${{ matrix.python-version }}
1619
module-name: safeds
20+
coverage: ${{ matrix.python-version == '3.10' }}

.github/workflows/pr.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,14 @@ concurrency:
1111
jobs:
1212
poetry-with-codecov:
1313
strategy:
14+
fail-fast: false
1415
matrix:
15-
python-version: [ "3.10" ]
16+
python-version:
17+
- "3.10"
18+
- "3.11"
1619
uses: lars-reimann/.github/.github/workflows/poetry-codecov-reusable.yml@main
1720
with:
1821
working-directory: .
1922
python-version: ${{ matrix.python-version }}
2023
module-name: safeds
24+
coverage: ${{ matrix.python-version == '3.10' }}

0 commit comments

Comments
 (0)