Skip to content

Sync the yacht exercise's docs with the latest data. (#257) #420

Sync the yacht exercise's docs with the latest data. (#257)

Sync the yacht exercise's docs with the latest data. (#257) #420

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-12
name: ${{ matrix.os }}
runs-on: ${{ matrix.runs-on }}
steps:
- name: Checkout code
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b
- 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