Skip to content

Version bump after coverity scan fixes #13

Version bump after coverity scan fixes

Version bump after coverity scan fixes #13

Workflow file for this run

name: CMake Build And Tests
on:
pull_request:
branches: [ "main" ]
env:
BUILD_TYPE: Release
jobs:
build:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Install Dependencies
run: sudo apt install libgmock-dev libgtest-dev libyaml-cpp-dev swig -y
- name: Configure
run: cmake -B build -DCMAKE_BUILD_TYPE=${{ env.BUILD_TYPE }}
- name: Build
run: cmake --build build
- name: Tests
working-directory: ${{ github.workspace }}/build
run: ctest -V --test-dir test