feature/setup-workflow-pipeline: add lombok, add gitea workflow #2

Merged
chimeudeonwop merged 102 commits from feature/setup-workflow-pipeline into main 2025-10-31 16:46:56 +00:00
13 changed files with 423 additions and 276 deletions
Showing only changes of commit ef92fba5db - Show all commits

View File

@ -98,6 +98,17 @@ jobs:
git clone --quiet "$CLONE_URL_WITH_AUTH" .
echo "${{ gitea.repository }} cloned successfully."
- name: Set up Java 21 and Maven
run: |
if command -v act >/dev/null 2>&1; then
echo "Detected act runner, installing OpenJDK 21 via apt-get..."
sudo apt-get update
sudo apt-get install -y openjdk-21-jdk maven
else
echo "Detected GitHub runner, using actions/setup-java..."
fi
shell: bash
- uses: actions/checkout@v5
- name: Set up JDK 21 for x64
uses: actions/setup-java@v4
@ -121,9 +132,6 @@ jobs:
restore-keys: |
maven-${{ runner.os }}-
#- name: Run the Maven verify phase
# run: mvn --batch-mode --update-snapshots verify
- name: Test & build backend
working-directory: ./src
run: |