Skip to content

Commit

Permalink
enhance dependency installation
Browse files Browse the repository at this point in the history
  • Loading branch information
raffenet committed Dec 10, 2019
1 parent ce77314 commit e1cf269
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ccpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e1cf269

Please sign in to comment.