Skip to content

Commit a29fdf5

Browse files
committed
output to job summary
1 parent 8f02e0d commit a29fdf5

File tree

6 files changed

+0
-70
lines changed

6 files changed

+0
-70
lines changed

.github/workflows/examples.yml

-35
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,6 @@ jobs:
2626
uses: test-summary/action@dist
2727
with:
2828
paths: c-clar/results/**/*.xml
29-
output: c-clar/results/test-summary.md
30-
if: always()
31-
- name: Upload test summary
32-
uses: actions/upload-artifact@v3
33-
with:
34-
name: c-clar
35-
path: c-clar/results/test-summary.md
3629
if: always()
3730

3831
# This runs .NET tests using the standard .NET test driver
@@ -52,13 +45,6 @@ jobs:
5245
uses: test-summary/action@dist
5346
with:
5447
paths: dotnet/results/**/*.xml
55-
output: dotnet/results/test-summary.md
56-
if: always()
57-
- name: Upload test summary
58-
uses: actions/upload-artifact@v3
59-
with:
60-
name: dotnet
61-
path: dotnet/results/test-summary.md
6248
if: always()
6349

6450
# This runs Java tests using the JUnit test framework
@@ -77,13 +63,6 @@ jobs:
7763
uses: test-summary/action@dist
7864
with:
7965
paths: java-junit/results/**/*.xml
80-
output: java-junit/results/test-summary.md
81-
if: always()
82-
- name: Upload test summary
83-
uses: actions/upload-artifact@v3
84-
with:
85-
name: java-junit
86-
path: java-junit/results/test-summary.md
8766
if: always()
8867

8968
# This runs JavaScript tests using the Mocha test framework
@@ -103,13 +82,6 @@ jobs:
10382
uses: test-summary/action@dist
10483
with:
10584
paths: javascript-mocha/results/**/*.xml
106-
output: javascript-mocha/results/test-summary.md
107-
if: always()
108-
- name: Upload test summary
109-
uses: actions/upload-artifact@v3
110-
with:
111-
name: javascript-mocha
112-
path: javascript-mocha/results/test-summary.md
11385
if: always()
11486

11587
# This runs JavaScript tests using the Node-Tap test framework
@@ -129,11 +101,4 @@ jobs:
129101
uses: test-summary/action@dist
130102
with:
131103
paths: javascript-tap/results/**/*.tap
132-
output: javascript-tap/results/test-summary.md
133-
if: always()
134-
- name: Upload test summary
135-
uses: actions/upload-artifact@v3
136-
with:
137-
name: javascript-tap
138-
path: javascript-tap/results/test-summary.md
139104
if: always()

c-clar/README.md

-7
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,5 @@ jobs:
3434
uses: test-summary/action@dist
3535
with:
3636
paths: results/**/*.xml
37-
output: results/test-summary.md
38-
if: always()
39-
- name: Upload test summary
40-
uses: actions/upload-artifact@v3
41-
with:
42-
name: test-summary
43-
path: results/test-summary.md
4437
if: always()
4538
```

dotnet/README.md

-7
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,5 @@ jobs:
4343
uses: test-summary/action@dist
4444
with:
4545
paths: results/**/*.xml
46-
output: results/test-summary.md
47-
if: always()
48-
- name: Upload test summary
49-
uses: actions/upload-artifact@v3
50-
with:
51-
name: test-summary
52-
path: results/test-summary.md
5346
if: always()
5447
```

java-junit/README.md

-7
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,5 @@ jobs:
3333
uses: test-summary/action@dist
3434
with:
3535
paths: results/**/*.xml
36-
output: results/test-summary.md
37-
if: always()
38-
- name: Upload test summary
39-
uses: actions/upload-artifact@v3
40-
with:
41-
name: test-summary
42-
path: results/test-summary.md
4336
if: always()
4437
```

javascript-mocha/README.md

-7
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,5 @@ jobs:
3434
uses: test-summary/action@dist
3535
with:
3636
paths: results/**/*.xml
37-
output: results/test-summary.md
38-
if: always()
39-
- name: Upload test summary
40-
uses: actions/upload-artifact@v3
41-
with:
42-
name: test-summary
43-
path: results/test-summary.md
4437
if: always()
4538
```

javascript-tap/README.md

-7
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,5 @@ jobs:
3434
uses: test-summary/action@dist
3535
with:
3636
paths: results/**/*.tap
37-
output: results/test-summary.md
38-
if: always()
39-
- name: Upload test summary
40-
uses: actions/upload-artifact@v3
41-
with:
42-
name: test-summary
43-
path: results/test-summary.md
4437
if: always()
4538
```

0 commit comments

Comments
 (0)