Skip to content

Commit 689366a

Browse files
committed
Fix bash syntax
1 parent f7fb29f commit 689366a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
3333
- name: Run Tests
3434
run: |
35-
if [ "${{ matrix.numpy-version }}" == "1.21" || "${{ matrix.numpy-version }}" == "dev" ]; then
35+
if [[ "${{ matrix.numpy-version }}" == "1.21" || "${{ matrix.numpy-version }}" == "dev" ]]; then
3636
PYTEST_EXTRA=(-k "numpy and not jax")
3737
fi
3838
pytest "${PYTEST_EXTRA[@]}"

0 commit comments

Comments
 (0)