Skip to content

Commit

Permalink
Fix #25
Browse files Browse the repository at this point in the history
  • Loading branch information
gasparnagy committed Feb 14, 2024
1 parent 3785d69 commit 1d9da31
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ jobs:
path: "**/specs-xunit-results.trx"
- name: Test Report
uses: dorny/test-reporter@v1
if: success() || failure()
if: github.event_name != 'pull_request' && (success() || failure())
with:
name: xUnit Specs
path: "**/specs-xunit-results.trx"
Expand Down Expand Up @@ -200,7 +200,7 @@ jobs:
path: "**/specs-nunit-results.trx"
- name: Test Report
uses: dorny/test-reporter@v1
if: success() || failure()
if: github.event_name != 'pull_request' && (success() || failure())
with:
name: NUnit Specs
path: "**/specs-nunit-results.trx"
Expand Down Expand Up @@ -236,7 +236,7 @@ jobs:
path: "**/specs-mstest-results.trx"
- name: Test Report
uses: dorny/test-reporter@v1
if: success() || failure()
if: github.event_name != 'pull_request' && (success() || failure())
with:
name: MsTest Specs
path: "**/specs-mstest-results.trx"
Expand Down

0 comments on commit 1d9da31

Please sign in to comment.