We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 876f533 + 85448c5 commit 2e102c4Copy full SHA for 2e102c4
1 file changed
.github/workflows/macos.yml
@@ -13,7 +13,9 @@ jobs:
13
runs-on: macos-latest
14
steps:
15
- name: Checkout repository
16
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
17
+ with:
18
+ lfs: true
19
20
- name: Make install script executable
21
run: chmod +x ./install-forefire-osx.sh
@@ -23,3 +25,18 @@ jobs:
23
25
24
26
- name: Check ForeFire version
27
run: ./bin/forefire -v
28
+
29
+ - name: Install Python test dependencies
30
+ run: pip3 install --break-system-packages lxml xarray netCDF4
31
32
+ - name: Add Build/Runtime Diagnostics
33
+ run: |
34
+ echo "--- Input data.nc Info ---"
35
+ ls -lh tests/runff/data.nc
36
+ brew install netcdf
37
+ ncdump -k tests/runff/data.nc || echo "Could not check data.nc format"
38
39
+ - name: Run 'runff' Test Script
40
41
+ cd tests/runff
42
+ bash ff-run.bash
0 commit comments