Skip to content

CMake: step-by-step testing to help debugging #10

CMake: step-by-step testing to help debugging

CMake: step-by-step testing to help debugging #10

Workflow file for this run

name: ci
on:
push:
paths:
- "**.f"
- "**.c"
- "**/CMakeLists.txt"
- ".github/workflows/ci.yml"
jobs:
core:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ubuntu-latest
env:
FC: gfortran-13
steps:
- uses: actions/checkout@v4
- run: cmake -B build
- run: cmake --build build
- run: ctest --test-dir build -V
- run: cmake --install build