Skip to content

Commit

Permalink
Update acceptance.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
pawelsz-rb authored Feb 28, 2024
1 parent 6d2d7c0 commit 3aada31
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/acceptance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,11 @@ jobs:
run: |
go get github.com/jandelgado/gcov2lcov
go install github.com/jandelgado/gcov2lcov
~/go/bin/gcov2lcov -infile coverage_client.out -outfile lcov.info
~/go/bin/gcov2lcov -infile coverage_client.out -outfile lcov_client.info
- uses: coverallsapp/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ./lcov.info
path-to-lcov: ./lcov_client.info
- name: Upload coverage data to CodeClimate
uses: paambaati/[email protected]
with:
Expand Down Expand Up @@ -113,11 +113,11 @@ jobs:
run: |
go get github.com/jandelgado/gcov2lcov
go install github.com/jandelgado/gcov2lcov
~/go/bin/gcov2lcov -infile coverage_test1.out -outfile lcov.info
~/go/bin/gcov2lcov -infile coverage_test1.out -outfile lcov_test1.info
- uses: coverallsapp/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ./lcov.info
path-to-lcov: ./lcov_test1.info
- name: Upload coverage data to CodeClimate
uses: paambaati/[email protected]
with:
Expand Down Expand Up @@ -173,11 +173,11 @@ jobs:
run: |
go get github.com/jandelgado/gcov2lcov
go install github.com/jandelgado/gcov2lcov
~/go/bin/gcov2lcov -infile coverage_test2.out -outfile lcov.info
~/go/bin/gcov2lcov -infile coverage_test2.out -outfile lcov_test2.info
- uses: coverallsapp/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ./lcov.info
path-to-lcov: ./lcov_test2.info
- name: Upload coverage data to CodeClimate
uses: paambaati/[email protected]
with:
Expand Down

0 comments on commit 3aada31

Please sign in to comment.