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 408 additions and 276 deletions
Showing only changes of commit a9065dcda2 - Show all commits

View File

@ -99,17 +99,12 @@ jobs:
echo "${{ gitea.repository }} cloned successfully."
- uses: actions/checkout@v5
- name: Set up JDK 11 for x64
- name: Set up JDK 21 for x64
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
architecture: x64
cache: maven
package: maven
- name: Run the Maven verify phase
run: mvn --batch-mode --update-snapshots verify
- name: Cache Maven dependencies
uses: actions/cache@v3
@ -119,6 +114,9 @@ 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: |