Merge pull request #53 from ekonbenefits/makebuildproxy-instance #15
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: Build CrossComple .net core/.net framework Windows | |
on: [push] | |
jobs: | |
build: | |
name: Test Windows .net Framework Only | |
runs-on: windows-2019 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup NuGet | |
uses: NuGet/[email protected] | |
- name: setup-msbuild | |
uses: microsoft/[email protected] | |
- name: Restore Packages | |
run: nuget restore ImpromptuInterface.sln | |
- name: Build solution | |
run: msbuild ImpromptuInterface.sln -t:rebuild -property:Configuration=Release | |
- name: Run vstests | |
uses: microsoft/[email protected] | |
with: | |
testAssembly: UnitTestImpromptuInterface.dll | |
searchFolder: .\Tests\UnitTestImpromptuInterface\bin\Release\*\ | |
runInParallel: true | |
otherConsoleOptions: /TestCaseFilter:"(TestCategory!=Performance)" | |
platform: x64 |