Skip to content

Commit

Permalink
Fixed to fixed path to lcov
Browse files Browse the repository at this point in the history
  • Loading branch information
helto4real committed Mar 23, 2020
1 parent 0fb6478 commit a15fefe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
- name: Build code
run: dotnet build
- name: Test code
run: dotnet test -v minimal /p:CollectCoverage=true /p:CoverletOutputFormat=lcov /p:CoverletOutput=./codecover/lcov.info
run: dotnet test -v minimal /p:CollectCoverage=true /p:CoverletOutputFormat=lcov /p:CoverletOutput=${{github.workspace}}/codecover/lcov.info

- name: Publish coverage report to coveralls.io
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ./codecover/lcov.info
path-to-lcov: ${{github.workspace}}/codecover/lcov.info

0 comments on commit a15fefe

Please sign in to comment.