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 info 24 make -j2 25 PROVE_OPTS=-v make prove -j2 26