From e1cf269321bf21eb40b6583cf35407a6b259efd7 Mon Sep 17 00:00:00 2001 From: Ken Raffenetti Date: Tue, 10 Dec 2019 15:01:23 -0700 Subject: [PATCH] enhance dependency installation --- .github/workflows/ccpp.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml index ab476a55d70..dab8a83a871 100644 --- a/.github/workflows/ccpp.yml +++ b/.github/workflows/ccpp.yml @@ -8,11 +8,15 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-18.04, ubuntu-16.04] + os: [ubuntu-18.04, ubuntu-16.04, macos-latest] steps: - - name: install gfortran + - name: install Linux dependencies + if: runner.os == 'Linux' run: sudo apt-get install gfortran + - name: install macOS dependencies + if: runner.os == 'macOS' + run: brew install autoconf automake libtool gcc - uses: actions/checkout@v1 with: submodules: true