Skip to content
This repository has been archived by the owner on Dec 20, 2024. It is now read-only.

Commit

Permalink
Build: CI verbosity
Browse files Browse the repository at this point in the history
  • Loading branch information
sandyarmstrong committed Nov 19, 2021
1 parent 2169c0a commit 0366489
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v1
- name: Restore dependencies
run: dotnet restore /bl:_artifacts/restore.binlog
run: dotnet restore /v:n /bl:_artifacts/restore.binlog
- name: Build
run: dotnet build --no-restore /bl:_artifacts/build.binlog
run: dotnet build --no-restore /v:n /bl:_artifacts/build.binlog
- name: Test
run: for proj in `find . -name *.Tests.csproj`; do dotnet test $proj --no-restore --no-build; done
- name: Pack
run: dotnet pack --no-restore --no-build /bl:_artifacts/pack.binlog
run: dotnet pack --no-restore --no-build /v:n /bl:_artifacts/pack.binlog
- name: Upload Artifacts
uses: actions/upload-artifact@v2.2.4
with:
Expand Down

0 comments on commit 0366489

Please sign in to comment.