- updates tests project

- updated github action
This commit is contained in:
makikvues
2021-07-06 15:19:49 +02:00
parent f1316db5f3
commit 1af100d9c4
10 changed files with 172 additions and 103 deletions

View File

@@ -24,15 +24,19 @@ jobs:
# checkout
- name: Checkout
uses: actions/checkout@v2
# Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild
- name: Setup MSBuild.exe
uses: microsoft/setup-msbuild@v1.0.2
# Setup NuGet
- name: Setup NuGet.exe
uses: nuget/setup-nuget@v1
# Restore the packages for testing
- name: Restore the application
run: msbuild -m $env:Solution_Path /t:Restore /p:Configuration=$env:Configuration
# run: msbuild -m $env:Solution_Path /t:Restore /p:Configuration=$env:Configuration
run: nuget restore $env:Solution_Path
# build
- name: run MSBuild