9 lines
244 B
YAML
9 lines
244 B
YAML
steps:
|
|
- name: test
|
|
image: php:7.4-cli
|
|
commands:
|
|
- apt-get update && apt-get install -y git
|
|
- php -l wp-allstars-plugin.php # Syntax check
|
|
- find . -name *.php -exec php -l {} \;
|
|
- echo "Basic linting passed"
|