Skip to content

Commit 17a91c6

Browse files
committed
add python version matrix for tests
1 parent d042a51 commit 17a91c6

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,16 @@ on:
1111
jobs:
1212
test:
1313
runs-on: ubuntu-latest
14+
strategy:
15+
matrix:
16+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
1417
steps:
1518
- uses: actions/checkout@v4
1619

17-
- name: Set up Python
20+
- name: Set up Python ${{ matrix.python-version }}
1821
uses: actions/setup-python@v5
1922
with:
20-
python-version: '3.9'
23+
python-version: ${{ matrix.python-version }}
2124

2225
- name: Install uv
2326
uses: astral-sh/setup-uv@v4

0 commit comments

Comments
 (0)