Skip to content

Commit 2bc401f

Browse files
committed
Add tests with many python versions
1 parent 2f46c78 commit 2bc401f

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/tests.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,16 @@ on:
77
jobs:
88
tests:
99
runs-on: ubuntu-latest
10+
strategy:
11+
fail-fast: false
12+
matrix:
13+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
1014
steps:
1115
- uses: actions/checkout@v3
12-
- name: Set up Python 3.12
16+
- name: Set up Python ${{ matrix.python-version }}
1317
uses: actions/setup-python@v4
1418
with:
15-
python-version: "3.12"
19+
python-version: ${{ matrix.python-version }}
1620
- name: Install dependencies
1721
run: |
1822
python -m pip install poetry

0 commit comments

Comments
 (0)