Skip to content

doc: added migration guide 1.0.0 to 2.0.0 to readme #33

doc: added migration guide 1.0.0 to 2.0.0 to readme

doc: added migration guide 1.0.0 to 2.0.0 to readme #33

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