We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a03a95c commit 669178fCopy full SHA for 669178f
.github/workflows/tests.yaml
@@ -44,16 +44,18 @@ jobs:
44
run: |
45
cd go/src/github.com/Workiva/go-datastructures
46
go test ./... | tee ${{github.workspace}}/go-test.txt
47
+ cd ${{github.workspace}}
48
+ mkdir artifacts
49
50
- name: XML output
51
- 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
53
54
- name: Upload Test Results
55
uses: actions/upload-artifact@v2
56
with:
57
name: go-datastructures tests
- path: /artifacts/tests_go_version-${{ matrix.go }}.xml
58
+ path: ./artifacts/tests_go_version-${{ matrix.go }}.xml
59
60
- uses: anchore/sbom-action@v0
61
0 commit comments