Skip to content

Bump microsoft/setup-msbuild from 1.1 to 1.3 #19

Bump microsoft/setup-msbuild from 1.1 to 1.3

Bump microsoft/setup-msbuild from 1.1 to 1.3 #19

Workflow file for this run

name: Unit test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
unittest:
runs-on: windows-2022
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup msbuild
uses: microsoft/setup-msbuild@v1.3
- name: Setup VSTest Path
uses: darenm/Setup-VSTest@v1.2
- name: Build unit test
run: msbuild SimpleComTest\SimpleComTest.vcxproj -property:"Configuration=Debug;Platform=x64"
- name: Run unit test
run: vstest.console.exe /Platform:x64 SimpleComTest\x64\Debug\SimpleComTest.dll