File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 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
2020 uses : test-summary/action@v1
2121 with :
2222 paths : " test/results/**/TEST-*.xml"
23- output : test-summary.md
2423 if : always()
2524` ` `
2625
@@ -33,7 +32,6 @@ Update `paths` to match the test output file(s) that your test harness produces.
3332 paths: |
3433 test-one/**/TEST-*.xml
3534 test-two/results/results.tap
36- output: test-summary.md
3735 if: always()
3836` ` `
3937
@@ -90,7 +88,7 @@ Options are specified on the [`with` map](https://docs.github.com/en/actions/usi
9088 paths: "test/results/**/TEST-*.xml"
9189 ` ` `
9290
93- * **`output`: the output file to create** (required )
91+ * **`output`: the output file to create** (optional )
9492 This is the path to the output file to populate with the test summary markdown data. For example :
9593
9694 ` ` ` yaml
@@ -99,6 +97,8 @@ Options are specified on the [`with` map](https://docs.github.com/en/actions/usi
9997 output: "test/results/summary.md"
10098 ` ` `
10199
100+ If this is not specified, the output will be to the workflow summary.
101+
102102 This file is [GitHub Flavored Markdown (GFM)](https://github.github.com/gfm/) and may include permitted HTML.
103103
104104FAQ
You can’t perform that action at this time.
0 commit comments