Compare commits

..

1 Commits

Author SHA1 Message Date
2209a1d474 chore(deps): update actions/cache action to v4
Some checks failed
Quality Check / Checkstyle Main (pull_request) Has been cancelled
Quality Check / Tests (pull_request) Has been cancelled
2024-09-25 15:02:18 +00:00
3 changed files with 4 additions and 21 deletions

@ -5,6 +5,7 @@ on:
branches:
- main
jobs:
build:
name: Build and analyze
@ -14,10 +15,10 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up JDK 21
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 21
java-version: 17
- name: Cache SonarQube packages
uses: actions/cache@v4
with:
@ -30,11 +31,6 @@ jobs:
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 }}

@ -3,9 +3,6 @@
![Gitea Release](https://img.shields.io/gitea/v/release/jank/LF8?gitea_url=https%3A%2F%2Fgit.kjan.de&style=plastic)
![Gitea Last Commit](https://img.shields.io/gitea/last-commit/jank/LF8?gitea_url=https%3A%2F%2Fgit.kjan.de&style=plastic)
## Code analysis coverage issues and results of linting MAY be found here:
https://sonarqube.kjan.de/dashboard?id=LF8&codeScope=overall
# Starter für das LF08 Projekt
## Requirements

@ -4,15 +4,6 @@ plugins {
id("io.spring.dependency-management") version "1.1.6"
id("checkstyle")
id("org.sonarqube") version "5.0.0.4638"
id("jacoco")
}
tasks.jacocoTestReport {
dependsOn(tasks.test) // Ensure tests are run before generating the report
reports {
xml.required = true
csv.required = true
}
}
sonar {
@ -76,5 +67,4 @@ dependencies {
tasks.withType<Test> {
useJUnitPlatform()
finalizedBy(tasks.jacocoTestReport) // Run JaCoCo report after tests
}
}