Skip to content

Commit d4b5afa

Browse files
fix actions
1 parent c9b87b1 commit d4b5afa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/actions.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ jobs:
2525
- python-version: '3.10'
2626
backend: jax
2727
nnx_enabled: true
28-
name: Run tests
28+
name: ${{ matrix.backend == 'jax' && format('Run tests ({0}, {1}, nnx_enabled = {2})', matrix.python-version, matrix.backend, matrix.nnx_enabled) || format('Run tests ({0}, {1})', matrix.python-version, matrix.backend) }}
2929
runs-on: ubuntu-latest
3030
env:
3131
PYTHON: ${{ matrix.python-version }}
3232
KERAS_HOME: .github/workflows/config/${{ matrix.backend }}
3333
KERAS_BACKEND: ${{ matrix.backend }}
34-
KERAS_NNX_ENABLED: ${{ matrix.nnx_enabled }}
34+
KERAS_NNX_ENABLED: ${{ matrix.backend == 'jax' && matrix.nnx_enabled || 'false' }}
3535
steps:
3636
- uses: actions/checkout@v4
3737
- name: Check for changes in keras/src/applications

0 commit comments

Comments
 (0)