Remove debug

This commit is contained in:
pointfeev 2021-08-09 06:52:48 -05:00 committed by GitHub
parent e9fa93c285
commit 4745b6356b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,10 +10,6 @@ jobs:
build:
strategy:
matrix:
configuration: [Debug, Release]
runs-on: windows-latest
env:
@ -35,25 +31,16 @@ jobs:
run: dotnet restore
- name: Build Project
run: dotnet build --no-restore --configuration $env:Configuration
env:
Configuration: ${{ matrix.configuration }}
run: dotnet build --no-restore --configuration Release
- name: Test Project
run: dotnet test --no-build --verbosity normal --configuration $env:Configuration
env:
Configuration: ${{ matrix.configuration }}
run: dotnet test --no-build --verbosity normal --configuration Release
- name: Setup MSBuild
uses: microsoft/setup-msbuild@v1.0.2
- name: Restore Solution
run: msbuild $env:Solution_Name /t:Restore /p:Configuration=$env:Configuration
env:
Configuration: ${{ matrix.configuration }}
run: msbuild $env:Solution_Name /t:Restore /p:Configuration=Release
- name: Build Solution
run: msbuild $env:Solution_Name /t:Build /p:Configuration=$env:Configuration
env:
Configuration: ${{ matrix.configuration }}
run: msbuild $env:Solution_Name /t:Build /p:Configuration=Release