AquaDX/.gitlab-ci.yml
2023-01-30 21:46:31 +09:00

14 lines
196 B
YAML

image: gradle:alpine
before_script:
- GRADLE_USER_HOME="$(pwd)/.gradle"
- export GRADLE_USER_HOME
build:
stage: build
script: gradle assemble
test:
stage: test
script: gradle check