Stuff and sniper (unfinished) #208
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: windows-debug | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Setup CMake | |
uses: jwlawson/actions-setup-cmake@v1 | |
- name: Configure and Build | |
run: | | |
mkdir build && cd build | |
cmake .. -DCMAKE_BUILD_TYPE=Debug | |
cmake --build . | |
- name: Run Unit Tests | |
run: | | |
cd build | |
ctest |