Skip to content

Remove unused <iostream> include #99

Remove unused <iostream> include

Remove unused <iostream> include #99

Workflow file for this run

name: Tests
on:
push:
branches: [ master, ci_debug ]
pull_request:
branches: [ master ]
workflow_dispatch:
env:
BUILD_TYPE: Release
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
with:
submodules: true
- 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}} --parallel
- name: Test
working-directory: ${{github.workspace}}/build
run: ctest -V -C ${{env.BUILD_TYPE}}