Add woodpecker CI

This commit is contained in:
Paul Schaub 2022-08-01 17:01:08 +02:00
parent 2222d95702
commit 21fee6253e
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311
3 changed files with 23 additions and 0 deletions

12
.woodpecker/.build.yml Normal file
View file

@ -0,0 +1,12 @@
pipeline:
run:
image: gradle:7.5-jdk8
commands:
- git checkout $CI_COMMIT_BRANCH
# Code works
- gradle test
# Code is clean
- gradle check javadocAll
# Code has coverage
- gradle jacocoRootReport coveralls
secrets: [COVERALLS_REPO_TOKEN]