- moved git actions to gitea actions

- removed sonarqube
- added report for junit tests
This commit is contained in:
2026-06-27 18:42:12 +02:00
parent 90664f4007
commit dfa2753619
9 changed files with 93 additions and 76 deletions
@@ -0,0 +1,21 @@
name: "Setup Maven with GitHub Packages"
description: "Sets up JDK and caches Maven dependencies."
inputs:
java-version:
description: "Java version to install"
default: "17"
required: true
java-distribution:
description: "Java distribution to use"
default: "corretto"
runs:
using: "composite"
steps:
- name: Set up JDK
with:
distribution: ${{ inputs.java-distribution }}
java-version: ${{ inputs.java-version }}
uses: actions/setup-java@v5