Bump PythonScript.Tests/gtest from e47544a
to b10fad3
#286
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: Continuous Integration | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
build_configuration: [Release, Debug] | |
build_platform: [x64, Win32] | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
with: | |
submodules: 'true' | |
- name: Add msbuild to PATH | |
uses: microsoft/setup-msbuild@v1 | |
- name: Setup NuGet.exe | |
uses: nuget/setup-nuget@v1 | |
- name: Restore | |
working-directory: . | |
run: nuget restore PythonScript.sln | |
- name: MSBuild of solution | |
working-directory: . | |
run: msbuild PythonScript.sln /m /verbosity:minimal /p:configuration="${{ matrix.build_configuration }}" /p:platform="${{ matrix.build_platform }}" | |