Skip to content

Bump org.junit.platform:junit-platform-suite from 1.10.0 to 1.10.2 #238

Bump org.junit.platform:junit-platform-suite from 1.10.0 to 1.10.2

Bump org.junit.platform:junit-platform-suite from 1.10.0 to 1.10.2 #238

Workflow file for this run

name: Java CI with Maven
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # Disable shallow clone (needed for Sonar)
- name: Cache local Maven repository
uses: actions/cache@v2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
java-version: '17'
distribution: 'adopt'
- name: Checkstyle
run: mvn -B checkstyle:checkstyle
- name: Unit & System Tests
run: mvn -B verify
- name: Analyze with SonarCloud
run: mvn -B sonar:sonar -Dsonar.login=${{ secrets.SONAR_TOKEN }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}