diff --git a/.github/workflows/main_build.yml b/.github/workflows/main_build.yml index 02456e6..36bec10 100644 --- a/.github/workflows/main_build.yml +++ b/.github/workflows/main_build.yml @@ -37,8 +37,10 @@ jobs: # Run the unit tests - name: Unit Tests - run: dotnet test ~/GoogleSheetsWrapper.Tests/GoogleSheetsWrapper.Tests.csproj --no-build --verbosity normal + run: dotnet test GoogleSheetsWrapper.Tests.csproj --no-build --verbosity normal + working-directory: 'src/GoogleSheetsWrapper.Tests' # Run the integration tests - name: Integration Tests - run: dotnet test ~/GoogleSheetsWrapper.IntegrationTests/GoogleSheetsWrapper.IntegrationTests.csproj --no-build --verbosity normal \ No newline at end of file + run: dotnet test GoogleSheetsWrapper.IntegrationTests.csproj --no-build --verbosity normal + working-directory: 'src/GoogleSheetsWrapper.IntegrationTests' \ No newline at end of file