Files
Data-Validate-Struct/.woodpecker/build.yaml
2025-12-14 21:02:55 +01:00

23 lines
508 B
YAML

matrix:
include:
- image: perl:5.36.0-slim-bullseye
- image: perl:5.38.0-slim-bookworm
- image: perl:5.40.0-slim-bookworm
- image: perl:5.42.0-slim-bookworm
- image: perl:5.43.5-slim-bookworm
steps:
test:
when:
event: [push]
image: ${image}
commands:
- apt-get update -y
- apt-get install -y gcc
- cpanm -n Regexp::Common
- cpanm -n Data::Validate
- cpanm -n Data::Validate::IP
- perl Makefile.PL
- make
- make test