mirror of
https://github.com/idanoo/laravel-resque.git
synced 2024-11-21 08:01:59 +00:00
9 lines
281 B
YAML
9 lines
281 B
YAML
|
# Codestandards
|
||
|
lint:
|
||
|
image: php:8.2
|
||
|
allow_failure: true
|
||
|
script:
|
||
|
- apt update && apt install -y wget unzip git
|
||
|
- wget https://getcomposer.org/composer.phar
|
||
|
- php composer.phar install --dev
|
||
|
- php -d memory_limit=256M vendor/bin/phpcs -s --standard=ruleset.xml
|