Skip to content

Fix unit tests on Linux gcc #48

Fix unit tests on Linux gcc

Fix unit tests on Linux gcc #48

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
trex:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
build_type: [Release, Debug]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Configure CMake
run: cmake -B ${{ github.workspace }}/build -DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
- name: Build
run: cmake --build ${{ github.workspace }}/build --config ${{ matrix.build_type }}