mirror of
https://codeberg.org/PGPainless/vks-java.git
synced 2024-11-22 07:22:06 +01:00
Add woodpecker CI
This commit is contained in:
parent
0a21cec1d3
commit
867eebe684
3 changed files with 24 additions and 0 deletions
|
@ -13,3 +13,8 @@ Source: https://pgpainless.org
|
||||||
Files: gradle*
|
Files: gradle*
|
||||||
Copyright: 2015 the original author or authors.
|
Copyright: 2015 the original author or authors.
|
||||||
License: Apache-2.0
|
License: Apache-2.0
|
||||||
|
|
||||||
|
# Woodpecker build files
|
||||||
|
Files: .woodpecker/*
|
||||||
|
Copyright: 2022 the original author or authors.
|
||||||
|
License: Apache-2.0
|
||||||
|
|
12
.woodpecker/.build.yml
Normal file
12
.woodpecker/.build.yml
Normal 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]
|
7
.woodpecker/.reuse.yml
Normal file
7
.woodpecker/.reuse.yml
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
# Code is licensed properly
|
||||||
|
# See https://reuse.software/
|
||||||
|
pipeline:
|
||||||
|
reuse:
|
||||||
|
image: fsfe/reuse:latest
|
||||||
|
commands:
|
||||||
|
- reuse lint
|
Loading…
Reference in a new issue