File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -44,16 +44,18 @@ jobs:
44
44
run : |
45
45
cd go/src/github.com/Workiva/go-datastructures
46
46
go test ./... | tee ${{github.workspace}}/go-test.txt
47
+ cd ${{github.workspace}}
48
+ mkdir artifacts
47
49
48
50
- name : XML output
49
51
run : |
50
- go2xunit -input ${{github.workspace}} /go-test.txt -output /artifacts/tests_go_version-${{ matrix.go }}.xml
52
+ go2xunit -input . /go-test.txt -output . /artifacts/tests_go_version-${{ matrix.go }}.xml
51
53
52
54
- name : Upload Test Results
53
55
uses : actions/upload-artifact@v2
54
56
with :
55
57
name : go-datastructures tests
56
- path : /artifacts/tests_go_version-${{ matrix.go }}.xml
58
+ path : . /artifacts/tests_go_version-${{ matrix.go }}.xml
57
59
58
60
- uses : anchore/sbom-action@v0
59
61
with :
You can’t perform that action at this time.
0 commit comments