pohja/.woodpecker.yml
Martijn de Boer 9f1032f1a0
All checks were successful
ci/woodpecker/push/woodpecker/1 Pipeline was successful
ci/woodpecker/push/woodpecker/2 Pipeline was successful
ci/woodpecker/push/woodpecker/3 Pipeline was successful
ci/woodpecker/push/woodpecker/4 Pipeline was successful
Update .woodpecker.yml
2024-02-03 15:11:18 +01:00

15 lines
No EOL
363 B
YAML

matrix:
PHPVERSION:
- 8.0
- 8.1
- 8.2
- 8.3
steps:
test:
image: php:${PHPVERSION}-cli
commands:
- find . -path ./app/vendor -prune -o -type f -name '*.php' -print0 | xargs -0 -n1 -P4 php -l -n | (! grep -v "No syntax errors detected" )
when:
- event: pull_request
- event: [push, tag, manual]
branch: main