Compare commits

...

2 Commits

Author SHA1 Message Date
3f6bd57d16 chore(deps): update plugin org.sonarqube to v5.1.0.4882
All checks were successful
gitea-sonarqube-bot OK
Build PR / Build and analyze (pull_request) Successful in 1m41s
Quality Check / Tests (pull_request) Successful in 40s
Quality Check / Checkstyle Main (pull_request) Successful in 37s
2024-09-27 09:14:29 +00:00
750041a9eb feat: SonarQube PR analysis (!21)
All checks were successful
Quality Check / Tests (push) Successful in 1m11s
Build / Build and analyze (push) Successful in 2m5s
Quality Check / Checkstyle Main (push) Successful in 51s
Release / Release (push) Successful in 39s
Reviewed-on: #21
2024-09-27 09:11:11 +00:00
2 changed files with 46 additions and 1 deletions

@ -0,0 +1,45 @@
name: Build PR
on: # test
pull_request:
types:
- opened
- reopened
- synchronize
- ready_for_review
jobs:
build:
name: Build and analyze
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up JDK 21
uses: actions/setup-java@v1
with:
java-version: 21
- name: Cache SonarQube packages
uses: actions/cache@v4
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- name: Cache Gradle packages
uses: actions/cache@v4
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: ${{ runner.os }}-gradle
- name: Coverage
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
run: ./gradlew test jacocoTestReport sonar
- name: Build and analyze
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
run: ./gradlew build sonar --info -Dsonar.pullrequest.branch=${{ github.event.pull_request.head.ref }} -Dsonar.pullrequest.base=${{ github.event.pull_request.base.ref }} -Dsonar.pullrequest.key=${{github.event.pull_request.number}}

@ -3,7 +3,7 @@ plugins {
id("org.springframework.boot") version "3.3.4" id("org.springframework.boot") version "3.3.4"
id("io.spring.dependency-management") version "1.1.6" id("io.spring.dependency-management") version "1.1.6"
id("checkstyle") id("checkstyle")
id("org.sonarqube") version "5.0.0.4638" id("org.sonarqube") version "5.1.0.4882"
id("jacoco") id("jacoco")
} }