fix commit/rollback crash; add ref to type->actual_type #303
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 - Build & Unit Tests | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
windows-build-unit-tests: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Add msbuild to PATH | |
uses: microsoft/[email protected] | |
- name: Compile - windows | |
run: MSBuild.exe /p:Configuration=Release /p:Platform="x64" src\visual-studio\chuck.vcxproj | |
- name: Unit Tests - windows | |
working-directory: .\src\test\ | |
run: python test.py ..\visual-studio\x64\Release\chuck.exe |