Skip to content

Commit 3d8ed73

Browse files
committed
rebase
1 parent 003477f commit 3d8ed73

File tree

1 file changed

+2
-13
lines changed

1 file changed

+2
-13
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -26,21 +26,10 @@ jobs:
2626
run: dotnet build --configuration Release --no-restore
2727

2828
- name: Run unit tests
29-
run: dotnet test --filter "Category=Unit" --configuration Release --no-build --verbosity normal --logger "trx;LogFileName=unit-test-results.trx"
30-
continue-on-error: true
29+
run: dotnet test --filter "Category=Unit" --configuration Release --no-build --verbosity normal
3130

3231
- name: Run integration tests
33-
run: dotnet test --filter "Category=Integration" --configuration Release --no-build --verbosity normal --logger "trx;LogFileName=integration-test-results.trx"
34-
continue-on-error: true
35-
36-
- name: Publish test results
37-
uses: dorny/test-reporter@v1
38-
if: always()
39-
with:
40-
name: Test Results
41-
path: '**/TestResults/*.trx'
42-
reporter: dotnet-trx
43-
fail-on-error: false
32+
run: dotnet test --filter "Category=Integration" --configuration Release --no-build --verbosity normal
4433

4534
- name: Package Lambda function
4635
if: github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop')

0 commit comments

Comments
 (0)