We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1217ed commit a4d3361Copy full SHA for a4d3361
1 file changed
.github/workflows/dotnet.yml
@@ -50,13 +50,13 @@ jobs:
50
51
# Build and test projects
52
- name: Install dependencies
53
- run: dotnet restore
+ run: dotnet restore -c Release
54
55
- name: Build
56
- run: dotnet build
+ run: dotnet build --no-restore -c Release
57
58
- name: Test
59
- run: dotnet test
+ run: dotnet test --no-restore --no-build -c Release
60
61
- name: Move NuGet Packages
62
run: mv (Get-ChildItem -Recurse ./ -Include *.nupkg) ./
0 commit comments