Skip to content

Commit

Permalink
run CI on both types of Mac
Browse files Browse the repository at this point in the history
HDF5 libs also installed on ARM
  • Loading branch information
alessandrofelder authored Apr 29, 2024
1 parent 25b30ce commit 92349a6
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/test_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,20 @@ jobs:
# Run all supported Python versions on linux
python-version: ["3.9", "3.10", "3.11"]
os: [ubuntu-latest]
# Include one windows and macos run
# Include one windows and ARM/Intel macos run
include:
- os: macos-latest
- os: macos-13 # Intel Mac
python-version: "3.10"
- os: macos-latest # ARM Mac
python-version: "3.10"
- os: windows-latest
python-version: "3.10"

steps:
# Run tests
- name: install HDF5 libs on ARM Mac
if: matrix.os == 'macos-latest'
run: brew install hdf5
- uses: neuroinformatics-unit/actions/test@v2
with:
python-version: ${{ matrix.python-version }}
Expand Down

0 comments on commit 92349a6

Please sign in to comment.