ci: add Woodpecker pipeline; docs: add review and tasks; docs: add AGENTS.md

This commit is contained in:
Your Name
2025-09-30 16:42:04 +08:00
parent 8a7afc8a00
commit 63a5ee87af
4 changed files with 165 additions and 0 deletions

15
.woodpecker.yml Normal file
View File

@@ -0,0 +1,15 @@
pipeline:
build_test:
image: maven:3.9-eclipse-temurin-17
when:
event: [ push, pull_request, tag ]
commands:
- mvn -B -DskipTests=false clean verify
package:
image: maven:3.9-eclipse-temurin-17
when:
event: [ push, tag ]
commands:
- mvn -B -DskipTests clean package