[BUILD] Gitea workflow

This commit is contained in:
Pit Friedrich
2026-06-27 08:03:28 +02:00
parent cc75e1dfc1
commit 9b62a9966c
+24
View File
@@ -0,0 +1,24 @@
name: CI
on:
pull_request:
branches:
- master
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Java 21 (Temurin)
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: '21'
cache: maven
- name: Build and Test
run: |
chmod +x mvnw
./mvnw verify