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

View File

@ -86,6 +86,17 @@ jobs:
runs-on: ubuntu-latest
steps:
# Checkout repository first (critical)
- name: Checkout repository
uses: actions/checkout@v3
env:
TOKEN: ${{ secrets.ACCESS_TOKEN }}
CLONE_URL: ${{ vars.CLONE_URL }}
with:
repository: ${{ gitea.repository }}
token: ${{ secrets.ACCESS_TOKEN }}
ref: ${{ gitea.ref }}
# Setup Java 21 and Maven with caching
- name: Set up Java & Maven
uses: actions/setup-java@v4
@ -102,9 +113,10 @@ jobs:
restore-keys: |
maven-${{ runner.os }}-
- name: Build & test backend
- name: Test & build backend
working-directory: ./src
run: |
echo "Started test & build backend..."
mvn clean install -B
mvn clean verify package -B