Skip to content

Commit

Permalink
Install also tensorflow when testing with JAX, because it's required …
Browse files Browse the repository at this point in the history
…by Keras
  • Loading branch information
bhky committed Dec 1, 2023
1 parent 43bef6b commit cf4506c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ jobs:
backend: [ tensorflow, jax ]
include:
- backend: tensorflow
package: tensorflow
packages: tensorflow
- backend: jax
package: jax[cpu]
packages: tensorflow jax[cpu]
name: python-${{ matrix.python }}-${{ matrix.backend }}
steps:
- name: Checkout
Expand All @@ -26,7 +26,7 @@ jobs:
run: |
python3 -m pip install pylint
python3 -m pip install mypy
python3 -m pip install ${{ matrix.package }}
python3 -m pip install ${{ matrix.packages }}
- name: Test
run: |
./tests/install_from_local_and_test.sh ${{ matrix.backend }}

0 comments on commit cf4506c

Please sign in to comment.