You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ To set up the test summary action, just add a few lines of YAML to your GitHub A
17
17
18
18
```yaml
19
19
- name: Test Summary
20
-
uses: test-summary/action@v1
20
+
uses: test-summary/action@v2
21
21
with:
22
22
paths: "test/results/**/TEST-*.xml"
23
23
if: always()
@@ -27,7 +27,7 @@ Update `paths` to match the test output file(s) that your test harness produces.
27
27
28
28
```yaml
29
29
- name: Test Summary
30
-
uses: test-summary/action@v1
30
+
uses: test-summary/action@v2
31
31
with:
32
32
paths: |
33
33
test-one/**/TEST-*.xml
@@ -64,15 +64,15 @@ Options are specified on the [`with` map](https://docs.github.com/en/actions/usi
64
64
* To specify a single file, provide it directly as a string value to the `paths` key. For example:
65
65
66
66
```yaml
67
-
- uses: test-summary/action@v1
67
+
- uses: test-summary/action@v2
68
68
with:
69
69
paths: "tests/results.xml"
70
70
```
71
71
72
72
* To specify multiple files, provide them as a multi-line string value to the `paths` key. For example:
73
73
74
74
```yaml
75
-
- uses: test-summary/action@v1
75
+
- uses: test-summary/action@v2
76
76
with:
77
77
paths: |
78
78
tests-one/results.xml
@@ -83,7 +83,7 @@ Options are specified on the [`with` map](https://docs.github.com/en/actions/usi
83
83
* You can specify files as a [glob patterns](https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#filter-pattern-cheat-sheet), allowing you to use wildcards to match multiple files. For example, to match all files named `TEST-*.xml` beneath the `tests` folder, recursively:
84
84
85
85
```yaml
86
-
- uses: test-summary/action@v1
86
+
- uses: test-summary/action@v2
87
87
with:
88
88
paths: "test/results/**/TEST-*.xml"
89
89
```
@@ -92,7 +92,7 @@ Options are specified on the [`with` map](https://docs.github.com/en/actions/usi
92
92
This is the path to the output file to populate with the test summary markdown data. For example:
0 commit comments