Browse Source

Change verbosity to only test

pull/1649/head
Colin Dembovsky 3 years ago
parent
commit
87016c3280
1 changed files with 4 additions and 2 deletions
  1. +4
    -2
      .github/workflows/basket-api.yml

+ 4
- 2
.github/workflows/basket-api.yml View File

@ -46,7 +46,8 @@ jobs:
dotnet build --no-restore
cd -
cd Services/Basket/Basket.UnitTests
dotnet test -v=normal
dotnet build --no-restore
dotnet test --no-build -v=normal
- name: Compose build ${{ env.SERVICE }}
run: sudo -E docker-compose build ${{ env.SERVICE }}
@ -76,7 +77,8 @@ jobs:
dotnet build --no-restore
cd -
cd Services/Basket/Basket.UnitTests
dotnet test -v=normal
dotnet build --no-restore
dotnet test --no-build -v=normal
- name: Enable experimental features for the Docker daemon and CLI
run: |


Loading…
Cancel
Save