mirror of
https://gitlab.uni-marburg.de/langbeid/powersort.git
synced 2025-01-21 19:50:35 +01:00
13 lines
290 B
YAML
13 lines
290 B
YAML
|
# https://docs.gitlab.com/ee/ci/testing/unit_test_report_examples.html#gradle
|
||
|
|
||
|
java:
|
||
|
image: alpine:latest
|
||
|
stage: test
|
||
|
script:
|
||
|
- apk --no-cache add openjdk23 gradle
|
||
|
- gradle test
|
||
|
artifacts:
|
||
|
when: always
|
||
|
reports:
|
||
|
junit: app/build/test-results/test/**/TEST-*.xml
|