Skip to content

test(acceptance): cover final stabilization regressions #6

test(acceptance): cover final stabilization regressions

test(acceptance): cover final stabilization regressions #6

Workflow file for this run

name: CI
on:
push:
pull_request:
permissions:
contents: read
jobs:
build-and-test:
name: ${{ matrix.compiler }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
compiler:
- g++
- clang++
steps:
- name: Check out repository
uses: actions/checkout@v6
- name: Configure
run: >-
cmake
-S .
-B build
-DBUILD_TESTING=ON
-DCMAKE_BUILD_TYPE=Debug
-DCMAKE_CXX_COMPILER=${{ matrix.compiler }}
- name: Build
run: cmake --build build --parallel
- name: Test
run: ctest --test-dir build --output-on-failure