Minepacks/.github/workflows/sonarcloud.yml

39 lines
1.2 KiB
YAML
Raw Normal View History

2021-11-05 20:25:13 +01:00
name: SonarCloud
on:
push:
branches:
- master
2022-05-01 10:58:02 +02:00
- dev
# pull_request:
# types: [opened, synchronize, reopened]
2021-11-05 20:25:13 +01:00
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
2023-05-11 21:20:19 +02:00
- uses: actions/checkout@v3
2021-11-05 20:25:13 +01:00
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
2024-02-08 22:45:11 +01:00
- name: Set up JDK 21
2023-05-20 11:11:11 +02:00
uses: actions/setup-java@v3
2021-11-05 20:25:13 +01:00
with:
2024-02-08 22:45:11 +01:00
java-version: 21
2023-05-11 21:20:19 +02:00
distribution: temurin
2021-11-05 20:25:13 +01:00
- name: Cache SonarCloud packages
2023-05-11 21:20:19 +02:00
uses: actions/cache@v3
2021-11-05 20:25:13 +01:00
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- name: Cache Maven packages
2023-05-11 21:20:19 +02:00
uses: actions/cache@v3
2021-11-05 20:25:13 +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=GeorgH93_Minepacks