Fix signed char - by rocallahan #91
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 CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: windows-2019 | |
name: Visual Studio | |
steps: | |
- uses: actions/checkout@v1 | |
with: | |
submodules: true | |
- name: Create build directory | |
run: mkdir build | |
- name: Run CMake | |
run: cmake -G "Visual Studio 16 2019" -DBILL_TEST=ON .. | |
working-directory: ./build | |
- name: Build bill | |
run: | | |
"C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\MSBuild\Current\Bin\MSBuild.exe" bill.sln /t:run_tests | |
working-directory: ./build | |
shell: cmd | |
- name: Run tests | |
run: | | |
cd build | |
.\test\Debug\run_tests |