mezzotre/.drone.yml

15 lines
335 B
YAML

kind: pipeline
type: docker
name: default
steps:
- name: Build
image: eclipse-temurin:17-jdk
commands:
- ./mvnw package -B -DskipTests=true
- name: Tests
image: quay.io/testcontainers/dind-drone-plugin
build_image: eclipse-temurin:17-jdk
cmd: ./mvnw test
prefetch_images:
- "postgres:13-alpine"