Skip to content

Commit

Permalink
run CI on both types of Mac (#36)
Browse files Browse the repository at this point in the history
* run CI on both types of Mac

* install hd5 on mac
  • Loading branch information
alessandrofelder authored Apr 29, 2024
1 parent 3fa5d16 commit 4ddf81e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/test_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,17 @@ jobs:
os: [ubuntu-latest]
# Include one windows and 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:
- name: install HDF libs on ARM Mac
if: matrix.os == 'macos-latest'
run: brew install hdf5
# Run tests
- uses: neuroinformatics-unit/actions/test@v2
with:
Expand Down

0 comments on commit 4ddf81e

Please sign in to comment.