Skip to content

Merge branch 'PULL-RESOLUTOR' into merging-43-44-46 #220

Merge branch 'PULL-RESOLUTOR' into merging-43-44-46

Merge branch 'PULL-RESOLUTOR' into merging-43-44-46 #220

Workflow file for this run

name: GitHub Actions Test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 21
uses: actions/setup-java@v2
with:
java-version: '21'
distribution: 'adopt'
- name: Cache Maven packages
uses: actions/cache@v2
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Build with Maven
run: mvn --batch-mode --update-snapshots clean compile
- name: Test with Maven
run: mvn --batch-mode --update-snapshots test
- name: SonarCloud Scan
uses: SonarSource/[email protected]
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}