Skip to content

Commit 963c33c

Browse files
Fix testing for Python 3.8
1 parent e653f7a commit 963c33c

File tree

3 files changed

+1401
-176
lines changed

3 files changed

+1401
-176
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,13 @@ jobs:
1616
strategy:
1717
fail-fast: true
1818
matrix:
19-
python_version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
19+
environment: ["py38", "py39", "py310", "py311", "py312", "py313"]
2020

2121
steps:
2222
- uses: actions/checkout@v3
2323
- uses: prefix-dev/[email protected]
2424
with:
2525
pixi-version: v0.41.0
26+
environments: ${{ matrix.environment }}
2627
cache: true
27-
- run: pixi run test
28+
- run: pixi run --environment test-${{ matrix.environment }} test

0 commit comments

Comments
 (0)