Skip to content

Commit 95d958f

Browse files
committed
Reduce verbosity of dotnet commands in GitHub actions
1 parent b031a85 commit 95d958f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ jobs:
3535
path: ~/.nuget/packages
3636
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
3737
- name: Restore NuGet packages
38-
run: dotnet restore --verbosity normal
38+
run: dotnet restore
3939
- name: Build solution
40-
run: dotnet build --verbosity normal
40+
run: dotnet build
4141
- name: Run tests
42-
run: dotnet test --no-build --verbosity normal --logger:"html;LogFileName=../../TestResults-${{ runner.os }}.html"
42+
run: dotnet test --no-build --logger:"html;LogFileName=../../TestResults-${{ runner.os }}.html"
4343
id: dotnet-test
4444
- name: Upload received files from failing tests
4545
uses: actions/upload-artifact@v2
@@ -69,7 +69,7 @@ jobs:
6969
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
7070
coverage-reports: ${{ steps.dotnet-test.outputs.coverage-reports }}
7171
- name: Create NuGet package
72-
run: dotnet pack --output . --no-build --verbosity normal
72+
run: dotnet pack --no-build --output .
7373
id: dotnet-pack
7474
- name: Upload NuGet package artifact
7575
uses: actions/upload-artifact@v2

0 commit comments

Comments
 (0)