Don't specify configuration for dotnet build

Since `dotnet test` below didn't specify the Release configuration,
it used the default configuration (generally Debug).
This commit is contained in:
Rainer Sigwald
2020-12-10 17:44:30 +00:00
committed by GitHub
parent b05136d6b3
commit 0c4ccab691
+1 -1
View File
@@ -20,6 +20,6 @@ jobs:
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal