mirror of
https://github.com/yuin/goldmark
synced 2025-03-04 23:04:52 +00:00
Fix workflow
This commit is contained in:
parent
8aefee4a22
commit
66a1061d96
1 changed files with 2 additions and 2 deletions
4
.github/workflows/test.yaml
vendored
4
.github/workflows/test.yaml
vendored
|
|
@ -21,13 +21,13 @@ jobs:
|
||||||
go test -v ./... -covermode=count -coverprofile=coverage.out
|
go test -v ./... -covermode=count -coverprofile=coverage.out
|
||||||
- name: Convert coverage to lcov
|
- name: Convert coverage to lcov
|
||||||
uses: jandelgado/gcov2lcov-action@v1.0.0
|
uses: jandelgado/gcov2lcov-action@v1.0.0
|
||||||
if: "matrix.os == 'ubuntu-latest'"
|
if: "matrix.platform == 'ubuntu-latest'"
|
||||||
with:
|
with:
|
||||||
infile: coverage.out
|
infile: coverage.out
|
||||||
outfile: coverage.lcov
|
outfile: coverage.lcov
|
||||||
- name: Coveralls
|
- name: Coveralls
|
||||||
uses: coverallsapp/github-action@v1.0.1
|
uses: coverallsapp/github-action@v1.0.1
|
||||||
if: "matrix.os == 'ubuntu-latest'"
|
if: "matrix.platform == 'ubuntu-latest'"
|
||||||
with:
|
with:
|
||||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
path-to-lcov: coverage.lcov
|
path-to-lcov: coverage.lcov
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue