diff --git a/.github/workflows/continuous.yml b/.github/workflows/continuous.yml index 23586b8..11b1fe8 100644 --- a/.github/workflows/continuous.yml +++ b/.github/workflows/continuous.yml @@ -52,6 +52,8 @@ jobs: runs-on: ubuntu-latest needs: [lint, build ] steps: + - name: "Verify working directory" + run: ls -R - name: Download build artefact uses: actions/download-artifact@v4 with: @@ -64,12 +66,14 @@ jobs: dotnet-version: '9.0.x' - name: Run unit tests - run: dotnet test --configuration Release --no-build --no-restore --filter "Category=Unit" + run: dotnet test ./PlaceApi.sln --configuration Release --no-build --no-restore --filter "Category=Unit" integration_tests: runs-on: ubuntu-latest needs: [lint, build ] steps: + - name: "Verify working directory" + run: ls -R - name: Download build artefact uses: actions/download-artifact@v4 with: @@ -82,4 +86,4 @@ jobs: dotnet-version: '9.0.x' - name: Run integration tests - run: dotnet test --configuration Release --no-build --no-restore --filter "Category=Integration" + run: dotnet test ./PlaceApi.sln --configuration Release --no-build --no-restore --filter "Category=Integration"