AcidIsland/.github/workflows/build.yml

38 lines
1.2 KiB
YAML
Raw Normal View History

name: SonarCloud
2021-03-06 21:32:35 +01:00
on:
push:
branches:
- develop
- master
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
name: Build and analyze
2021-03-06 21:32:35 +01:00
runs-on: ubuntu-latest
steps:
2023-06-24 21:57:11 +02:00
- uses: actions/checkout@v3
2021-03-06 21:32:35 +01:00
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
2022-10-04 14:10:20 +02:00
- name: Set up JDK 17
2023-06-24 21:57:11 +02:00
uses: actions/setup-java@v3
2021-03-06 21:32:35 +01:00
with:
2021-07-09 18:11:41 +02:00
distribution: 'adopt'
java-version: 17
2021-03-06 21:32:35 +01:00
- name: Cache SonarCloud packages
2023-06-24 21:57:11 +02:00
uses: actions/cache@v3
2021-03-06 21:32:35 +01:00
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- name: Cache Maven packages
2023-06-24 21:57:11 +02:00
uses: actions/cache@v3
2021-03-06 21:32:35 +01:00
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Build and analyze
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: mvn -B verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dsonar.projectKey=BentoBoxWorld_AcidIsland