Skip to content

Commit 226fe49

Browse files
authored
Update go.yml (#3)
* Update go.yml
1 parent e4cf429 commit 226fe49

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/go.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,19 @@ jobs:
2222
run: go build -v ./...
2323

2424
- name: Test
25-
run: go test -v -covermode=count -coverprofile=coverage.out ./...
25+
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
2632

2733
- name: Coveralls install goveralls
2834
run: go get github.com/mattn/goveralls
2935

3036
- name: Coveralls push
31-
run: goveralls -coverprofile=coverage.out -service=github
37+
run: goveralls -coverprofile=covprofile.out -service=github
3238
env:
3339
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3440

0 commit comments

Comments
 (0)