From 99e86312f96a9b909939c2725549c086f36f18e0 Mon Sep 17 00:00:00 2001 From: Colin Dembovsky Date: Thu, 15 Apr 2021 10:28:08 -0500 Subject: [PATCH] Change working dir --- .github/workflows/basket-api.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/basket-api.yml b/.github/workflows/basket-api.yml index 83b929587..1d6ca60e7 100644 --- a/.github/workflows/basket-api.yml +++ b/.github/workflows/basket-api.yml @@ -55,11 +55,12 @@ jobs: - name: Build and run unit tests run: | + cd src dotnet restore "eShopOnContainers-ServicesAndWebApps.sln" - cd /src/Services/Catalog/Catalog.API + cd Services/Catalog/Catalog.API dotnet build --no-restore cd - - cd src/Services/Catalog/Catalog.UnitTests + cd Services/Catalog/Catalog.UnitTests dotnet test - name: Enable experimental features for the Docker daemon and CLI