We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e15ac52 commit 510a5abCopy full SHA for 510a5ab
1 file changed
.github/workflows/build.yml
@@ -311,7 +311,7 @@ jobs:
311
cd -
312
fi
313
- name: Install package
314
- if: matrix.os == 'ubuntu-latest'
+ if: ${{ contains(matrix.os, 'ubuntu') }}
315
env:
316
GALPY_COMPILE_NO_OPENMP: 1
317
GALPY_COMPILE_COVERAGE: 1
@@ -320,7 +320,7 @@ jobs:
320
python -m pip install --no-build-isolation -ve .
321
python setup.py build_ext --inplace
322
323
- if: matrix.os == 'macos-15-intel'
+ if: ${{ contains(matrix.os, 'macos') }}
324
run: |
325
python -m pip install -v .
326
- name: Special config
0 commit comments