Skip to content

Commit

Permalink
Better test for macos-14 in GHA
Browse files Browse the repository at this point in the history
  • Loading branch information
pgleeson committed Apr 17, 2024
1 parent 790fd9d commit 0b7a78c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,9 @@ jobs:
python -m pip install --upgrade pip
- name: Install HDF5 for pytables on macos-14
if: ${{ matrix.runs-on == 'macos-14' }}
run: |
if [[ ${{ matrix.runs-on }} == "macos-14" ]]; then brew install hdf5 ; fi;
brew install hdf5
- name: Build package
run: |
Expand Down

0 comments on commit 0b7a78c

Please sign in to comment.