Skip to content

Commit

Permalink
add Coveralls step to CI github action
Browse files Browse the repository at this point in the history
  • Loading branch information
mattnworb committed Feb 22, 2021
1 parent 516af80 commit fb68589
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/ci.yaml
Expand Up @@ -26,3 +26,19 @@ jobs:
- name: Build with Maven
# TODO: use 'verify' to run ITs (https://github.com/spotify/missinglink/issues/130)
run: mvn --batch-mode --update-snapshots package
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
flag-name: run-${{ matrix.java_version }}
parallel: true

finish:
needs: test
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.github_token }}
parallel-finished: true

0 comments on commit fb68589

Please sign in to comment.