mezzotre/.drone.yml

15 lines
335 B
YAML
Raw Normal View History

2023-03-26 22:44:17 +02:00
kind: pipeline
type: docker
name: default
steps:
- name: Build
image: eclipse-temurin:17-jdk
commands:
2023-03-27 09:24:36 +02:00
- ./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"