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