Browse Source

Fixing dotnet test cmd

pull/1649/head
Colin Dembovsky 3 years ago
parent
commit
5ec02287b6
2 changed files with 8 additions and 4 deletions
  1. +4
    -2
      .github/workflows/catalog-api.yml
  2. +4
    -2
      .github/workflows/ordering-api.yml

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

@ -46,7 +46,8 @@ jobs:
dotnet build --no-restore
cd -
cd Services/Catalog/Catalog.UnitTests
dotnet test
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/Catalog/Catalog.UnitTests
dotnet test
dotnet build --no-restore
dotnet test --no-build -v=normal
- name: Enable experimental features for the Docker daemon and CLI
run: |


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

@ -46,7 +46,8 @@ jobs:
dotnet build --no-restore
cd -
cd Services/Ordering/Ordering.UnitTests
dotnet test
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/Ordering/Ordering.UnitTests
dotnet test
dotnet build --no-restore
dotnet test --no-build -v=normal
- name: Enable experimental features for the Docker daemon and CLI
run: |


Loading…
Cancel
Save