Skip to content

Commit e54f0b0

Browse files
add test matrix for python versions
1 parent 6a1ba39 commit e54f0b0

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,9 @@ jobs:
5555
name: Run the tests against python 3.9 (oldest supported version)
5656
needs: Lint
5757
runs-on: ubuntu-latest
58+
strategy:
59+
matrix:
60+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
5861
steps:
5962
- uses: actions/checkout@v4
6063
- uses: wistia/[email protected]
@@ -67,10 +70,10 @@ jobs:
6770
version: ${{ env.POETRY_TOOL_VERSION }}
6871
virtualenvs-in-project: true
6972

70-
- name: Set up Python 3.9
73+
- name: Set up Python ${{ matrix.python-version }}
7174
uses: actions/setup-python@v5
7275
with:
73-
python-version: 3.9
76+
python-version: ${{ matrix.python-version }}
7477
cache: poetry
7578

7679
- name: Install dependencies

0 commit comments

Comments
 (0)