Skip to content

Commit

Permalink
output to job summary
Browse files Browse the repository at this point in the history
  • Loading branch information
ethomson committed Apr 22, 2022
1 parent 8f02e0d commit a29fdf5
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 70 deletions.
35 changes: 0 additions & 35 deletions .github/workflows/examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,6 @@ jobs:
uses: test-summary/action@dist
with:
paths: c-clar/results/**/*.xml
output: c-clar/results/test-summary.md
if: always()
- name: Upload test summary
uses: actions/upload-artifact@v3
with:
name: c-clar
path: c-clar/results/test-summary.md
if: always()

# This runs .NET tests using the standard .NET test driver
Expand All @@ -52,13 +45,6 @@ jobs:
uses: test-summary/action@dist
with:
paths: dotnet/results/**/*.xml
output: dotnet/results/test-summary.md
if: always()
- name: Upload test summary
uses: actions/upload-artifact@v3
with:
name: dotnet
path: dotnet/results/test-summary.md
if: always()

# This runs Java tests using the JUnit test framework
Expand All @@ -77,13 +63,6 @@ jobs:
uses: test-summary/action@dist
with:
paths: java-junit/results/**/*.xml
output: java-junit/results/test-summary.md
if: always()
- name: Upload test summary
uses: actions/upload-artifact@v3
with:
name: java-junit
path: java-junit/results/test-summary.md
if: always()

# This runs JavaScript tests using the Mocha test framework
Expand All @@ -103,13 +82,6 @@ jobs:
uses: test-summary/action@dist
with:
paths: javascript-mocha/results/**/*.xml
output: javascript-mocha/results/test-summary.md
if: always()
- name: Upload test summary
uses: actions/upload-artifact@v3
with:
name: javascript-mocha
path: javascript-mocha/results/test-summary.md
if: always()

# This runs JavaScript tests using the Node-Tap test framework
Expand All @@ -129,11 +101,4 @@ jobs:
uses: test-summary/action@dist
with:
paths: javascript-tap/results/**/*.tap
output: javascript-tap/results/test-summary.md
if: always()
- name: Upload test summary
uses: actions/upload-artifact@v3
with:
name: javascript-tap
path: javascript-tap/results/test-summary.md
if: always()
7 changes: 0 additions & 7 deletions c-clar/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,5 @@ jobs:
uses: test-summary/action@dist
with:
paths: results/**/*.xml
output: results/test-summary.md
if: always()
- name: Upload test summary
uses: actions/upload-artifact@v3
with:
name: test-summary
path: results/test-summary.md
if: always()
```
7 changes: 0 additions & 7 deletions dotnet/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,5 @@ jobs:
uses: test-summary/action@dist
with:
paths: results/**/*.xml
output: results/test-summary.md
if: always()
- name: Upload test summary
uses: actions/upload-artifact@v3
with:
name: test-summary
path: results/test-summary.md
if: always()
```
7 changes: 0 additions & 7 deletions java-junit/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,5 @@ jobs:
uses: test-summary/action@dist
with:
paths: results/**/*.xml
output: results/test-summary.md
if: always()
- name: Upload test summary
uses: actions/upload-artifact@v3
with:
name: test-summary
path: results/test-summary.md
if: always()
```
7 changes: 0 additions & 7 deletions javascript-mocha/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,5 @@ jobs:
uses: test-summary/action@dist
with:
paths: results/**/*.xml
output: results/test-summary.md
if: always()
- name: Upload test summary
uses: actions/upload-artifact@v3
with:
name: test-summary
path: results/test-summary.md
if: always()
```
7 changes: 0 additions & 7 deletions javascript-tap/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,5 @@ jobs:
uses: test-summary/action@dist
with:
paths: results/**/*.tap
output: results/test-summary.md
if: always()
- name: Upload test summary
uses: actions/upload-artifact@v3
with:
name: test-summary
path: results/test-summary.md
if: always()
```

0 comments on commit a29fdf5

Please sign in to comment.