diff --git a/.github/workflows/test_and_deploy.yml b/.github/workflows/test_and_deploy.yml index 01464b5..030fc1e 100644 --- a/.github/workflows/test_and_deploy.yml +++ b/.github/workflows/test_and_deploy.yml @@ -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 }}