Skip to content

update tests

update tests #296

Workflow file for this run

name: Build and test
on: push
jobs:
gfortran:
strategy:
matrix:
version: [9, 10, 11, 12]
os: ["ubuntu-latest"]
include:
#- version: 7
#os: ubuntu-20.04
#- version: 8
#os: ubuntu-20.04
#cmake_args: -DFABM_USE_CONTIGUOUS=OFF
- version: 13
os: ubuntu-24.04
- version: 14
os: ubuntu-24.04
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Install compiler
run: |
sudo apt-get update
sudo apt-get install gfortran-${{ matrix.version }}
- name: Clone gotm
uses: actions/checkout@v4
with:
path: gotm
submodules: recursive
- name: Clone gotm-cases
uses: actions/checkout@v4
with:
path: cases
repository: gotm-model/cases
ref: v6.0

Check failure on line 36 in .github/workflows/gotm.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/gotm.yml

Invalid workflow file

You have an error in your yaml syntax on line 36
- name: Build and run all test cases
run: python3 cases/scripts/run_all.py --show_logs --gotm_base=gotm --exclude plume --compiler=gfortran-${{ matrix.version }} -DGOTM_USE_STIM=ON -DGOTM_USE_SEAGRASS=ON -DGOTM_USE_NetCDF=OFF ${{ matrix.cmake_args }}