Skip to content

Bump org.junit:junit-bom from 5.14.3 to 6.0.3 #12

Bump org.junit:junit-bom from 5.14.3 to 6.0.3

Bump org.junit:junit-bom from 5.14.3 to 6.0.3 #12

Workflow file for this run

name: SonarCloud
on:
pull_request:
push:
branches: [ main ]
jobs:
sonar:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: actions/setup-java@v5
with:
distribution: temurin
java-version: '17'
- uses: gradle/actions/setup-gradle@v6
- run: ./gradlew test jacocoTestReport
- if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository
run: ./gradlew sonar
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}