xref: /libCEED/.github/workflows/c-fortran-test-linux-osx.yml (revision 990fdeb6bb8fc9af2da4472bdc0d1f57da5da0e5)
1name: C/Fortran
2
3on:
4  push:
5
6jobs:
7  test:
8    strategy:
9      matrix:
10        os: [ubuntu-20.04, macos-latest]
11        compiler: [gcc-9, clang]
12
13    runs-on: ${{ matrix.os }}
14
15    steps:
16    - name: Environment setup
17      uses: actions/checkout@v2
18    - name: Build and test libCEED
19      env:
20        CC: ${{ matrix.compiler }}
21        FC: gfortran-9
22      run: |
23        make -v
24        make info
25        make -j2
26        PROVE_OPTS=-v make prove -j2
27