Skip to content

Commit a707961

Browse files
Merge pull request #159 from jazzband/ci-add-multiple-test-targets
ci: add multiple test targets
2 parents 3ffe89f + 6e4de8e commit a707961

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/tests.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1718
# When changing this matrix, you have to change the "after_n_builds" parameter
1819
# in the .github/codecov.yml file. It must match the number of builds being
1920
# started considering the matrix. See the following links for more information:
@@ -22,8 +23,12 @@ jobs:
2223
icalendar-version:
2324
- "5" # means (>=5.0.0,<6.0.0)
2425
- "6" # means (>=6.0.0,<7.0.0)
25-
2626
steps:
27+
- name: Set up Python ${{ matrix.python-version }}
28+
uses: actions/setup-python@v5
29+
with:
30+
python-version: ${{ matrix.python-version }}
31+
2732
- name: "Checkout repository"
2833
uses: actions/checkout@v4
2934

0 commit comments

Comments
 (0)