Skip to content

Update dependency com.github.spotbugs:spotbugs-annotations to v4.9.0 #3

Update dependency com.github.spotbugs:spotbugs-annotations to v4.9.0

Update dependency com.github.spotbugs:spotbugs-annotations to v4.9.0 #3

Workflow file for this run

name: Coveralls
on: [push, pull_request]
jobs:
coveralls:
if: github.repository_owner == 'hazendaz'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v4
with:
cache: maven
distribution: temurin
java-version: 21
- name: Report Coverage to Coveralls for Pull Requests
if: github.event_name == 'pull_request'
run: xvfb-run -a ./mvnw -B -V test jacoco:report coveralls:report -q -Dlicense.skip=true -DrepoToken=$GITHUB_TOKEN -DserviceName=github -DpullRequest=$PR_NUMBER --no-transfer-progress
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PR_NUMBER: ${{ github.event.number }}
- name: Report Coverage to Coveralls for General Push
if: github.event_name == 'push'
run: xvfb-run -a ./mvnw -B -V test jacoco:report coveralls:report -q -Dlicense.skip=true -DrepoToken=$GITHUB_TOKEN -DserviceName=github --no-transfer-progress
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}