We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4cf429 commit 226fe49Copy full SHA for 226fe49
.github/workflows/go.yml
@@ -22,13 +22,19 @@ jobs:
22
run: go build -v ./...
23
24
- name: Test
25
- run: go test -v -covermode=count -coverprofile=coverage.out ./...
+ run: go test -race -covermode atomic -coverprofile=covprofile.out ./...
26
+
27
+ - name: Ls
28
+ run: ls -la
29
30
+ - name: Find
31
+ run: find . -name covprofile.out
32
33
- name: Coveralls install goveralls
34
run: go get github.com/mattn/goveralls
35
36
- name: Coveralls push
- run: goveralls -coverprofile=coverage.out -service=github
37
+ run: goveralls -coverprofile=covprofile.out -service=github
38
env:
39
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
40
0 commit comments