Skip to content

Commit

Permalink
get debug info from reportgenerator for lcov info
Browse files Browse the repository at this point in the history
  • Loading branch information
houstonhaynes committed Feb 15, 2025
1 parent e4ac11a commit d89ed95
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/build-test-docs-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,11 @@ jobs:
- name: Convert coverage format
run: |
reportgenerator "-reports:coverage/coverage.opencover.xml" "-targetdir:coverage" "-reporttypes:lcov"
echo "LCOV file contents:"
cat coverage/lcov.info
echo "LCOV file size:"
ls -l coverage/lcov.info
- name: Get git commit info
run: |
echo "GIT_COMMIT_AUTHOR=$(git log -1 --pretty=%cn)" >> $GITHUB_ENV
echo "GIT_COMMIT_AUTHOR_EMAIL=$(git log -1 --pretty=%ce)" >> $GITHUB_ENV
echo "GIT_COMMIT_MESSAGE=$(git log -1 --pretty=%s)" >> $GITHUB_ENV
- name: Upload coverage report to Coveralls
uses: coverallsapp/github-action@v2
with:
Expand All @@ -67,7 +66,9 @@ jobs:
flag-name: unit-tests
format: lcov
base-path: /home/runner/work/Furnace/Furnace
fail-on-error: false
fail-on-error: true # Change to true to see actual error
git-branch: ${{ github.ref }}
git-commit: ${{ github.sha }}
- name: Run fsdocs
run: dotnet fsdocs build --eval --strict --properties Configuration=Release
- name: Deploy docs
Expand Down

0 comments on commit d89ed95

Please sign in to comment.