This repository has been archived on 2022-06-01. You can view files and clone it, but cannot push or open issues or pull requests.
LinkDitch/.drone.yml

21 lines
352 B
YAML

---
kind: pipeline
type: docker
name: Tests Coverage
steps:
- name: Run Tests With Coverage
image: maven:3.8-openjdk-17-slim
environment:
SONAR_LOGIN:
from_secret: SONAR_TOKEN
commands:
- mvn clean verify sonar:sonar -s ./settings.xml
trigger:
branch:
include:
- master
trigger:
event:
- push