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:
+1
-1
@@ -20,6 +20,6 @@ jobs:
|
|||||||
- name: Restore dependencies
|
- name: Restore dependencies
|
||||||
run: dotnet restore
|
run: dotnet restore
|
||||||
- name: Build
|
- name: Build
|
||||||
run: dotnet build --configuration Release --no-restore
|
run: dotnet build --no-restore
|
||||||
- name: Test
|
- name: Test
|
||||||
run: dotnet test --no-restore --verbosity normal
|
run: dotnet test --no-restore --verbosity normal
|
||||||
|
|||||||
Reference in New Issue
Block a user