Skip to content

Commit c0939bb

Browse files
committed
fix the condition
1 parent d6830f9 commit c0939bb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/test_code.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ jobs:
3838

3939
- name: Install nightly version of numpy
4040
run: python -m pip install --pre --index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple --extra-index-url https://pypi.org/simple numpy -U
41-
if: runner.os == 'ubuntu-latest' && matrix.python-version == '3.12'
41+
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.12'
4242

4343
- name: Code tests with nightly numpy
4444
run: python -m pytest -vv --ignore=tests/selenium
45-
if: runner.os == 'ubuntu-latest' && matrix.python-version == '3.12'
45+
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.12'

0 commit comments

Comments
 (0)