Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@ jobs:
file: ${{ steps.coverage.outputs.file }}
format: cobertura
flag-name: Scala ${{ matrix.scala }}
parallel: true

# Scanned once, on the first Scala version only: SonarQube tracks one analysis per branch, so
# running it per matrix leg would have the legs overwrite each other.
Expand Down Expand Up @@ -191,6 +192,20 @@ jobs:
-Dsonar.scala.coverage.reportPaths=${{ steps.sonar.outputs.reports }}
${{ inputs.sonar_args }}

# Closes the parallel Coveralls build once every matrix leg has uploaded its part. Without
# `parallel: true` the first upload closes the build and the other legs get rejected with
# "Can't add a job to a build that is already closed".
coverage-finished:
runs-on: ubuntu-latest
needs: [test-coverage]
if: ${{ !cancelled() }}

steps:
- name: finish Coveralls build
uses: coverallsapp/github-action@v2
with:
parallel-finished: true

binary-compatibility:
runs-on: ubuntu-latest
strategy:
Expand Down