From c873e2af98a33be940165e3e4bc9011f7c811919 Mon Sep 17 00:00:00 2001 From: Richard Dungal Date: Thu, 5 Dec 2024 17:01:48 +0100 Subject: [PATCH] r --- .github/workflows/tests.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 8de4694ff..367cf914c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -12,11 +12,8 @@ jobs: with: dotnet-version: '8.x' - name: Install dependencies - working-directory: ./src - run: dotnet restore + run: dotnet restore ./src - name: Build - working-directory: ./src - run: dotnet build + run: dotnet build ./src - name: Test with the dotnet CLI - working-directory: ./src - run: dotnet test \ No newline at end of file + run: dotnet test ./src \ No newline at end of file