Skip to content

Added a new module object to support modularity-related information #3

Added a new module object to support modularity-related information

Added a new module object to support modularity-related information #3

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 ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
- name: Tests
working-directory: ${{github.workspace}}/build
run: ctest -V --test-dir test