We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 669178f commit e0d5382Copy full SHA for e0d5382
.github/workflows/tests.yaml
@@ -31,6 +31,7 @@ jobs:
31
with:
32
go-version: ${{ matrix.go }}
33
34
+ # go install does not work because it needs credentials
35
- name: install go2xunit
36
run: |
37
git clone https://github.com/tebeka/go2xunit.git
@@ -44,11 +45,11 @@ jobs:
44
45
46
cd go/src/github.com/Workiva/go-datastructures
47
go test ./... | tee ${{github.workspace}}/go-test.txt
- cd ${{github.workspace}}
48
- mkdir artifacts
49
50
- name: XML output
51
+ cd ${{github.workspace}}
52
+ mkdir artifacts
53
go2xunit -input ./go-test.txt -output ./artifacts/tests_go_version-${{ matrix.go }}.xml
54
55
- name: Upload Test Results
0 commit comments