Skip to content

Commit 510a5ab

Browse files
committed
Actually install package for macos arm and generally for macos
1 parent e15ac52 commit 510a5ab

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ jobs:
311311
cd -
312312
fi
313313
- name: Install package
314-
if: matrix.os == 'ubuntu-latest'
314+
if: ${{ contains(matrix.os, 'ubuntu') }}
315315
env:
316316
GALPY_COMPILE_NO_OPENMP: 1
317317
GALPY_COMPILE_COVERAGE: 1
@@ -320,7 +320,7 @@ jobs:
320320
python -m pip install --no-build-isolation -ve .
321321
python setup.py build_ext --inplace
322322
- name: Install package
323-
if: matrix.os == 'macos-15-intel'
323+
if: ${{ contains(matrix.os, 'macos') }}
324324
run: |
325325
python -m pip install -v .
326326
- name: Special config

0 commit comments

Comments
 (0)