We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8bee853 commit 7f424f2Copy full SHA for 7f424f2
.github/workflows/tests.yml
@@ -36,19 +36,9 @@ jobs:
36
uses: actions/checkout@v1
37
- name: Make
38
run: make
39
- - name: Convert coverage to lcov
40
- uses: jandelgado/gcov2lcov-action@v1.0.0
41
- with:
42
- infile: c.out
43
- outfile: c.lcov
44
- - name: Coveralls Parallel
45
- uses: coverallsapp/github-action@v1.0.1
46
47
- github-token: ${{ secrets.GITHUB_TOKEN }}
48
- parallel: true
49
- path-to-lcov: c.lcov
50
- - name: Coveralls Finished
51
52
53
54
- parallel-finished: true
+ - name: Coveralls
+ env:
+ COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ run: |
+ go get github.com/mattn/goveralls
+ $(go env GOPATH)/bin/goveralls -coverprofile=c.out -service=github
0 commit comments