Fix again
This commit is contained in:
parent
652a062790
commit
32c90e508f
1 changed files with 5 additions and 1 deletions
6
.github/workflows/build-and-test.yml
vendored
6
.github/workflows/build-and-test.yml
vendored
|
@ -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()
|
||||
|
|
Loading…
Reference in a new issue