Skip to content

Commit

Permalink
Update test.yml
Browse files Browse the repository at this point in the history
enigne authored Jul 15, 2024
1 parent 2ff5ccc commit 0c70d00
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -19,8 +19,8 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11"]
backend: ["tensorflow", "jax"]
python-version: ['3.9', '3.10', '3.11']
backend: ['tensorflow', 'jax']

steps:
- uses: actions/checkout@v3
@@ -34,7 +34,7 @@ jobs:
python -m pip install flake8 pytest pytest-cov
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Install jax
if: ${{matrix.backend == "jax"}}
if: ${{matrix.backend == 'jax'}}
run: |
python -m pip install jax flax optax
- name: Lint with flake8

0 comments on commit 0c70d00

Please sign in to comment.