Skip to content

50 add parsing of version 0 configuration #217

50 add parsing of version 0 configuration

50 add parsing of version 0 configuration #217

Workflow file for this run

name: Ubuntu
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
cancel-in-progress: true
jobs:
build-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
compiler: [g++, clang++]
build_type: [Release]
env:
CXX: ${{ matrix.compiler }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Run Cmake
run: cmake -S . -B build -D CMAKE_BUILD_TYPE=${{ matrix.build_type }}
- name: Build
run: cmake --build build --config ${{ matrix.build_type }} --parallel 10
- name: Run tests
run: |
cd build
ctest -C ${{ matrix.build_type }} --rerun-failed --output-on-failure . --verbose