Skip to content

Commit 89ddd66

Browse files
authored
Add parallel CI builds for Python 3.12 and 3.13 (#326)
* Add parallel CI builds for Python 3.12 and 3.13 * Update test.yml
1 parent 82ff3ef commit 89ddd66

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/test.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ on:
1111
jobs:
1212
build:
1313
runs-on: ubuntu-latest
14+
strategy:
15+
matrix:
16+
python-version: ["'<3.13'", "'>=3.13'"]
1417
steps:
1518
- uses: actions/checkout@v4
1619

@@ -21,7 +24,7 @@ jobs:
2124

2225
- name: Install Python dependencies
2326
run: |
24-
uv sync --all-extras --dev
27+
uv sync --all-extras --dev --python ${{ matrix.python-version }}
2528
2629
- name: Run tests
2730
env:

0 commit comments

Comments
 (0)