ci-demo-2/.woodpecker/.backend.yml

27 lines
497 B
YAML

---
when:
path: "app/**"
clone:
git:
image: woodpeckerci/plugin-git
settings:
skip_verify: true
steps:
"lint:style":
group: lint
image: gradle:8.4.0-jdk17
commands:
- gradle spotlessCheck --no-daemon
"lint:hadolint":
group: lint
image: ghcr.io/hadolint/hadolint:latest-debian
commands:
- hadolint --version
"build:java":
group: build
image: gradle:8.4.0-jdk17
commands:
- ./gradlew build
depends_on:
- "lint_general"