Skip to content

Add short to copy and grant types #118

Add short to copy and grant types

Add short to copy and grant types #118

Workflow file for this run

name: Tests
on:
push:
branches: [ master, ci_debug ]
pull_request:
branches: [ master ]
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
- 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
working-directory: ${{github.workspace}}/build
run: ctest -V -C ${{env.BUILD_TYPE}} --rerun-failed --output-on-failure