From 32c90e508f059bb81c1580496bb6b3cb08a5f96f Mon Sep 17 00:00:00 2001 From: Alex Hyett Date: Mon, 10 Jul 2023 12:15:47 +0100 Subject: [PATCH] Fix again --- .github/workflows/build-and-test.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 6a018a8..b50f37c 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -20,7 +20,7 @@ jobs: run: dotnet test --filter Category=Unit --no-restore --verbosity normal - uses: canastro/copy-file-action@master with: - source: "test/**/TestResults/Unit.Tests.trx" + source: "test/**/TestResults/*.Unit.Tests.trx" target: "TestResults" - name: Start containers run: docker-compose -f "docker-compose.yml" up -d --build @@ -29,6 +29,10 @@ jobs: shell: bash - name: Run Integration Tests run: dotnet test --filter Category=Integration --no-restore --verbosity normal + - uses: canastro/copy-file-action@master + with: + source: "test/**/TestResults/*.Integration.Tests.trx" + target: "TestResults" - name: Test Report uses: dorny/test-reporter@v1 if: success() || failure()