Skip to content

GitHub workflows: Add Coverity Scan and refactoring #5

GitHub workflows: Add Coverity Scan and refactoring

GitHub workflows: Add Coverity Scan and refactoring #5

Workflow file for this run

name: CMake Build And Tests
on:
pull_request:
branches: [ "main" ]
env:
BUILD_TYPE: Release
jobs:
prepare:
uses: ./.github/workflows/build-prepare.yml
build:
runs-on: ubuntu-24.04
needs: prepare
steps:
- name: Build
run: cmake --build build
- name: Tests
working-directory: ${{ github.workspace }}/build
run: ctest -V --test-dir test