Skip to content

Commit 9299fbd

Browse files
GeekTrainerCopilot
andcommitted
Add Python version matrix to test-api job
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 8d6665a commit 9299fbd

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/run-tests.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,18 @@ permissions:
1212
jobs:
1313
test-api:
1414
runs-on: ubuntu-latest
15+
strategy:
16+
fail-fast: false
17+
matrix:
18+
python-version: ['3.12', '3.13', '3.14']
1519

1620
steps:
1721
- uses: actions/checkout@v4
1822

19-
- name: Set up Python
23+
- name: Set up Python ${{ matrix.python-version }}
2024
uses: actions/setup-python@v5
2125
with:
22-
python-version: '3.14'
26+
python-version: ${{ matrix.python-version }}
2327
cache: 'pip'
2428

2529
- name: Install dependencies

0 commit comments

Comments
 (0)