From 57fdbe3f8d6ce6f8d086bcb05522189e5a61fdad Mon Sep 17 00:00:00 2001 From: James Hughes Date: Mon, 6 May 2024 11:21:01 +0100 Subject: [PATCH] Use working dir and manually build --- .github/workflows/dotnet-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/dotnet-ci.yml b/.github/workflows/dotnet-ci.yml index 375bafd..861f0b9 100644 --- a/.github/workflows/dotnet-ci.yml +++ b/.github/workflows/dotnet-ci.yml @@ -17,4 +17,5 @@ jobs: with: dotnet-version: 8.0.x - name: Run tests - run: dotnet test --logger GitHubActions ./src/UniversalDiveDataFormat.sln \ No newline at end of file + working-directory: ./src + run: dotnet restore && dotnet test --logger GitHubActions \ No newline at end of file