There was an error while loading. Please reload this page.
1 parent 80e8e54 commit 1286830Copy full SHA for 1286830
.github/workflows/test.yml
@@ -27,11 +27,11 @@ jobs:
27
- name: Test
28
run: go test ./...
29
- name: Test coverage
30
- run: go test -coverprofile=profile.cov ./...
+ run: go test -coverprofile="cover.out" ./... # quotes needed for powershell
31
- name: Send coverage
32
uses: shogo82148/actions-goveralls@v1
33
with:
34
- path-to-profile: profile.cov
+ path-to-profile: cover.out
35
flag-name: go${{ matrix.go-version }}-${{ matrix.os }}
36
parallel: true
37
# notifies that all test jobs are finished.
0 commit comments