From f7bb155243dbac9a236ce7429792ec5e6edadc32 Mon Sep 17 00:00:00 2001 From: WarriorsSami Date: Tue, 18 Jun 2024 21:03:28 +0300 Subject: [PATCH] fix(ci-quetzalcoatl): specify path to project when building and testing --- .github/workflows/quetzalcoatl-auth-ci.yaml | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/.github/workflows/quetzalcoatl-auth-ci.yaml b/.github/workflows/quetzalcoatl-auth-ci.yaml index a914615..1d14afa 100644 --- a/.github/workflows/quetzalcoatl-auth-ci.yaml +++ b/.github/workflows/quetzalcoatl-auth-ci.yaml @@ -16,13 +16,10 @@ jobs: uses: actions/setup-dotnet@v3 with: dotnet-version: '7.0.x' - - name: Cd into the project directory - run: cd quetzalcoatl-auth - - name: Pwd - run: pwd - - name: Install dependencies - run: dotnet restore - name: Build - run: dotnet build - - name: Test with the dotnet CLI - run: dotnet test \ No newline at end of file + run: | + dotnet restore "quetzalcoatl-auth/Bootstrapper/Bootstrapper.csproj" + cd quetzalcoatl-auth + dotnet build --no-restore + - name: Test + run: dotnet test "quetzalcoatl-auth/Tests.Integration/Tests.Integration.csproj" \ No newline at end of file