Test runner refactor #309
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: MSVC-CI | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Configure and Build | |
run: | | |
mkdir build | |
cd build | |
cmake -G "Visual Studio 17 2022" -A Win32 .. | |
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 | |
- name: Upload artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: pycdc-release | |
path: build\Release\*.exe |