Skip to content

Commit

Permalink
BUG: fixed coveralls file specification
Browse files Browse the repository at this point in the history
Specify the coverage XML file instead of a general format.
  • Loading branch information
aburrell committed Apr 4, 2024
1 parent 486796d commit de87059
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Expand Up @@ -65,7 +65,7 @@ jobs:
COVERALLS_PARALLEL: true
run: |
curl -sL https://coveralls.io/coveralls-linux.tar.gz | tar -xz
./coveralls report -format cobertura --parallel --repo-token=${{ secrets.COVERALLS_REPO_TOKEN }}
./coveralls report -f coverage.xml --parallel --repo-token=${{ secrets.COVERALLS_REPO_TOKEN }}
- name: Install and run Coveralls Reporter (Windows)
if: startsWith(matrix.os, 'windows')
Expand All @@ -74,7 +74,7 @@ jobs:
COVERALLS_PARALLEL: true
run: |
curl -L https://github.com/coverallsapp/coverage-reporter/releases/latest/download/coveralls-windows.exe -o coveralls.exe
./coveralls.exe report -format cobertura --parallel --repo-token=${{ secrets.COVERALLS_REPO_TOKEN }}
./coveralls.exe report -f coverage.xml --parallel --repo-token=${{ secrets.COVERALLS_REPO_TOKEN }}
- name: Report and run Coveralls (macOS)
if: startsWith(matrix.os, 'macos')
Expand All @@ -84,7 +84,7 @@ jobs:
run: |
brew tap coverallsapp/coveralls --quiet
brew install coveralls --quiet
coveralls report -format cobertura --parallel --repo-token=${{ secrets.COVERALLS_REPO_TOKEN }}
coveralls report -f coverage.xml --parallel --repo-token=${{ secrets.COVERALLS_REPO_TOKEN }}
finish:
name: Finish Coverage Analysis
Expand Down

0 comments on commit de87059

Please sign in to comment.