Skip to content

Test runner refactor #310

Test runner refactor

Test runner refactor #310

Workflow file for this run

name: Linux-CI
on:
push:
branches: [master]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Configure and Build
run: |
mkdir build && cd build
cmake -G "Ninja Multi-Config" ..
cmake --build . --config Debug
cmake --build . --config Release
- name: Test
run: |
cd build
cmake --build . --config Debug --target check
cmake --build . --config Release --target check