Ci: Add job to check if project compiles

This commit is contained in:
Lars Simon Winzer
2026-03-13 23:05:23 +01:00
parent fb02faffc9
commit cfeea5222d
+9
View File
@@ -1,5 +1,6 @@
stages:
- lint
- build
checkstyle:
stage: lint
@@ -15,3 +16,11 @@ checkstyle:
expire_in: 1 week
rules:
- when: manual
compile-check:
stage: build
image: gradle:9.3.1-jdk25
script:
- gradle compileTestJava
rules:
- when: manual