Skip to content

Commit

Permalink
build: Fix the Windows build pipeline for GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
nhubbard committed May 16, 2024
1 parent 5e02fa6 commit 8adc224
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ jobs:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
- name: Report Coveralls (Windows)
if: startsWith(runner.os, 'Windows')
run: curl -sL https://github.com/coverallsapp/coverage-reporter/releases/latest/download/coveralls-windows.zip | zcat > ./coveralls.exe && ./coveralls.exe report build/reports/kover/report.xml
run: |
curl -sL https://github.com/coverallsapp/coverage-reporter/releases/latest/download/coveralls-windows.zip | zcat > ./coveralls.exe
.\coveralls.exe report build/reports/kover/report.xml
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
- name: Report Coveralls (macOS)
Expand Down

0 comments on commit 8adc224

Please sign in to comment.