phpmyadmin/test/ci-phplint
William Desportes 4520a7bb5b
Move to GitHub actions
Signed-off-by: William Desportes <williamdes@wdes.fr>
2021-01-19 21:43:23 +01:00

10 lines
149 B
Bash
Executable File

#!/bin/sh
FILES=`find . -name '*.php' -not -path './vendor/*'`
for FILE in $FILES ; do
if [ -f $FILE ] ; then
php -l $FILE
fi
done