Re-enable CodeQL for TTY Resizer #103
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: Unit test | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
permissions: read-all | |
jobs: | |
unittest: | |
runs-on: windows-2022 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4.1.1 | |
- name: Setup msbuild | |
uses: microsoft/setup-msbuild@v2 | |
- name: Setup VSTest Path | |
uses: darenm/Setup-VSTest@v1.3 | |
- name: Build unit test | |
run: msbuild SimpleComTest\SimpleComTest.vcxproj -property:"Configuration=Debug" -property:"Platform=x64" | |
- name: Run unit test | |
run: vstest.console.exe /Platform:x64 SimpleComTest\x64\Debug\SimpleComTest.dll |