Skip to content

Merge branch 'fix/minor_mait' into development #28

Merge branch 'fix/minor_mait' into development

Merge branch 'fix/minor_mait' into development #28

Workflow file for this run

name: CMake-Release
on:
push:
branches: [ "main", "development"]
pull_request:
branches: [ "main", "development"]
env:
BUILD_TYPE: Release
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Configure CMake
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: Test Individual
working-directory: ${{github.workspace}}/build
run: make test mars-test
- name: Test End to End
working-directory: ${{github.workspace}}/build
run: make test mars-e2e-test