Fix workflow

This commit is contained in:
yuin 2019-11-18 15:42:59 +09:00
parent 76006af024
commit 22bbda3653

View file

@ -16,7 +16,7 @@ jobs:
- name: Checkout code
uses: actions/checkout@v1
- name: Run tests
run: go test -v ./... -covermode=count -coverprofile=coverage.out
run: go test -v -cover ./... -covermode=count -coverprofile=coverage.out -coverpkg=./...
- name: Convert coverage to lcov
uses: jandelgado/gcov2lcov-action@v1.0.0
if: "matrix.platform == 'ubuntu-latest'"