From a4229ff600dbdd08ef1b3bef982d414ec2dceef7 Mon Sep 17 00:00:00 2001 From: scivision Date: Sun, 7 Jan 2024 21:14:17 -0500 Subject: [PATCH] ci: compound if logic --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 354c886..940e009 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,11 +31,11 @@ jobs: - uses: actions/checkout@v4 - name: install NetCDF system libs - if: ${{ !matrix.build }} && runner.os == 'Linux' + if: ${{ !matrix.build && runner.os == 'Linux' }} run: sudo apt install --no-install-recommends ninja-build libnetcdff-dev - - name: install HDF5 system libs - if: ${{ !matrix.build }} && runner.os == 'macOS' + - name: install NetCDF system libs + if: ${{ !matrix.build && runner.os == 'macOS' }} run: brew install netcdf - run: >-