Update .woodpecker.yml
This commit is contained in:
parent
bdd2fe802d
commit
9f1032f1a0
1 changed files with 7 additions and 1 deletions
|
@ -1,6 +1,12 @@
|
|||
matrix:
|
||||
PHPVERSION:
|
||||
- 8.0
|
||||
- 8.1
|
||||
- 8.2
|
||||
- 8.3
|
||||
steps:
|
||||
test:
|
||||
image: php:8.2-cli
|
||||
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:
|
||||
|
|
Loading…
Reference in a new issue