Skip to content

Commit b95a958

Browse files
authored
Merge branch 'main' into test_788868759
2 parents 6dc50ad + fd7ab09 commit b95a958

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.github/workflows/test.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,21 @@ on: [push, workflow_dispatch]
1919

2020
jobs:
2121
unittest-job:
22-
name: Unittests
22+
name: Unittests (Python ${{ matrix.python-version }}, JAX ${{ matrix.jax-version }})
2323
strategy:
2424
fail-fast: false
2525
matrix:
2626
python-version: ['3.10', '3.11', '3.12']
27+
jax-version: ['0.5.3', '0.6.0', '0.6.1', '0.6.2', '0.7.0']
28+
29+
exclude:
30+
- python-version: '3.10'
31+
jax-version: '0.7.0'
2732
runs-on: ubuntu-latest
2833
timeout-minutes: 30
2934

3035
concurrency:
31-
group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.python-version }}
36+
group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.python-version }}-${{ matrix.jax-version }}
3237
cancel-in-progress: true
3338

3439
steps:
@@ -39,7 +44,7 @@ jobs:
3944
with:
4045
python-version: ${{ matrix.python-version }}
4146
- run: pip --version
42-
- run: pip install -e .
47+
- run: pip install -e . "jax==${{ matrix.jax-version }}"
4348
- run: pip freeze
4449

4550
# Run tests

0 commit comments

Comments
 (0)