Skip to content

Commit

Permalink
fix test action
Browse files Browse the repository at this point in the history
  • Loading branch information
ohsawa0515 committed May 3, 2021
1 parent cbd9606 commit 4959b9b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
run: go test -v -covermode=count -coverprofile=coverage.out
- name: Convert coverage to lcov
uses: jandelgado/gcov2lcov-action@v1.0.5
if: "matrix.os == 'ubuntu-latest'" && "matrix.go-version == '1.16.x'"
if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.16.x'
- name: Coveralls
uses: coverallsapp/github-action@v1.0.4
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.github_token }}
path-to-lcov: coverage.lcov
if: "matrix.os == 'ubuntu-latest'" && "matrix.go-version == '1.16.x'"
if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.16.x'

0 comments on commit 4959b9b

Please sign in to comment.