File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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
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
You can’t perform that action at this time.
0 commit comments