File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,6 @@ To set up the test summary action, just add a few lines of YAML to your GitHub A
20
20
uses : test-summary/action@v1
21
21
with :
22
22
paths : " test/results/**/TEST-*.xml"
23
- output : test-summary.md
24
23
if : always()
25
24
` ` `
26
25
@@ -33,7 +32,6 @@ Update `paths` to match the test output file(s) that your test harness produces.
33
32
paths: |
34
33
test-one/**/TEST-*.xml
35
34
test-two/results/results.tap
36
- output: test-summary.md
37
35
if: always()
38
36
` ` `
39
37
@@ -90,7 +88,7 @@ Options are specified on the [`with` map](https://docs.github.com/en/actions/usi
90
88
paths: "test/results/**/TEST-*.xml"
91
89
` ` `
92
90
93
- * **`output`: the output file to create** (required )
91
+ * **`output`: the output file to create** (optional )
94
92
This is the path to the output file to populate with the test summary markdown data. For example :
95
93
96
94
` ` ` yaml
@@ -99,6 +97,8 @@ Options are specified on the [`with` map](https://docs.github.com/en/actions/usi
99
97
output: "test/results/summary.md"
100
98
` ` `
101
99
100
+ If this is not specified, the output will be to the workflow summary.
101
+
102
102
This file is [GitHub Flavored Markdown (GFM)](https://github.github.com/gfm/) and may include permitted HTML.
103
103
104
104
FAQ
You can’t perform that action at this time.
0 commit comments