diff --git a/.woodpecker/build.yaml b/.woodpecker/build.yaml new file mode 100644 index 0000000..2df106c --- /dev/null +++ b/.woodpecker/build.yaml @@ -0,0 +1,24 @@ +matrix: + include: + - os: ubuntu:25.04 + - os: ubuntu:24.04 + +labels: + platform: ${platform} + +steps: + build: + when: + event: [push] + image: ${os} + commands: + - perl Makefile.PL + - make -j4 + + test: + when: + event: [push] + image: ${os} + commands: + - make test + depends_on: [build]