Skip to content

Commit

Permalink
Merge branch 'ci'
Browse files Browse the repository at this point in the history
  • Loading branch information
astraw committed Dec 9, 2024
2 parents df0d237 + 1db8ca1 commit a7f5718
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@ jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, ubuntu-latest, macos-11, macos-latest, windows-2019, windows-latest]
os: [ubuntu-20.04, ubuntu-latest, macos-13, macos-latest, windows-2019, windows-latest]
python-version: [ '3.9', '3.x' ]

steps:
Expand All @@ -25,6 +26,15 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install libhdf5 (macOS)
# See https://stackoverflow.com/questions/73029883
if: runner.os == 'macOS'
run: |
brew install hdf5
brew install c-blosc
export HDF5_DIR=/opt/homebrew/opt/hdf5
export BLOSC_DIR=/opt/homebrew/opt/c-blosc
export LZO_DIR=/opt/homebrew/opt/lzo
- name: Upgrade pip
run: python -m pip install --upgrade pip
- name: Build and install flydra_core
Expand All @@ -36,8 +46,9 @@ jobs:
test-ubuntu-system-python:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, ubuntu-latest]
os: [ubuntu-24.04, ubuntu-latest]
steps:
- uses: actions/checkout@v3
- name: Update package index
Expand Down

0 comments on commit a7f5718

Please sign in to comment.