Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 18 additions & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ jobs:
runs-on: macos-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
lfs: true

- name: Make install script executable
run: chmod +x ./install-forefire-osx.sh
Expand All @@ -23,3 +25,18 @@ jobs:

- name: Check ForeFire version
run: ./bin/forefire -v

- name: Install Python test dependencies
run: pip3 install --break-system-packages lxml xarray netCDF4

- name: Add Build/Runtime Diagnostics
run: |
echo "--- Input data.nc Info ---"
ls -lh tests/runff/data.nc
brew install netcdf
ncdump -k tests/runff/data.nc || echo "Could not check data.nc format"

- name: Run 'runff' Test Script
run: |
cd tests/runff
bash ff-run.bash
Loading