name: C/C++ CI on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build_cmake: name: CMake Build & Test env: BUILD_TYPE: Release strategy: matrix: os: [ubuntu-latest, windows-latest] build_type: [Release] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2 - name: Configure CMake run: cmake -B build -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -DELFIO_BUILD_EXAMPLES=YES -DELFIO_BUILD_TESTS=YES - name: Build run: cmake --build build --config ${{ matrix.build_type }} - name: Test run: | cd build ctest -VV -C ${{ matrix.build_type }} cd ..