Skip to content

Synchronise with problem specifications (#230) #4

Synchronise with problem specifications (#230)

Synchronise with problem specifications (#230) #4

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
jobs:
test:
strategy:
fail-fast: false
matrix:
include:
- os: linux
runs-on: ubuntu-22.04
- os: macos
runs-on: macos-13
name: ${{ matrix.os }}
runs-on: ${{ matrix.runs-on }}
steps:
- name: Checkout code
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
- name: Set path to gfortran
if: matrix.os == 'macos'
run: |
echo "FC=$(ls /usr/local/Cellar/gcc/*/bin/gfortran | tail -n1)" >> $GITHUB_ENV
- name: Verify all exercises
run: |
mkdir build
cd build
cmake ..
cmake --build .
ctest -V