diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 184e9e5..d49e9b1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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