Skip to content

Commit

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

also install HDF5 libs on ARM

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
alessandrofelder and pre-commit-ci[bot] authored Apr 29, 2024
1 parent 085bfd8 commit aeb41f3
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 @@ -42,13 +42,18 @@ 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:
# 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 aeb41f3

Please sign in to comment.