diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4cf4f1f..0c7763a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,7 +21,7 @@ jobs: uses: ./ with: working-directory: testdata - version: v1.0.4 + version: v1.0.6 - name: Diff run: diff -y coverage_expected.lcov coverage.lcov working-directory: testdata diff --git a/README.md b/README.md index 29c8b95..5a4d382 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,25 @@ # gcov2lcov-action [![Build Status](https://github.com/jandelgado/gcov2lcov-action/workflows/test/badge.svg)](https://github.com/jandelgado/gcov2lcov-action/actions?workflow=test) +
+

NOTE

+ +The coverallsapp-action +now supports the golang coverage format out of the box. You probably won't need +this action anymore. Example: + + +```yaml + - name: Coveralls + uses: coverallsapp/github-action@v2.3.0 + with: + github-token: ${{ secrets.github_token }} + file: coverage.out + format: golang +``` +
+ +## What Convert golang coverage files to lcov format. Works nicely with the [coveralls github action](https://github.com/marketplace/actions/coveralls-github-action) and