A general cleanup of the library #72
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Windows | |
on: [pull_request, push] | |
env: | |
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) | |
BUILD_TYPE: Release | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Get Submodules | |
run: git submodule update --init | |
working-directory: ${{github.workspace}} | |
- name: Setup CMake | |
run: cmake CMakeLists.txt | |
working-directory: ${{github.workspace}}\test | |
- name: Build | |
run: cmake --build . --config ${{env.BUILD_TYPE}} | |
working-directory: ${{github.workspace}}\test | |
- name: Test | |
run: ctest -V . | |
working-directory: ${{github.workspace}}\test |