mirror of
https://github.com/RaspAP/raspap-webgui.git
synced 2024-11-21 23:20:22 +00:00
01052bf8af
Add a composer.json file Bring in squizlabs/php_codesniffer and phpcompatibility/php-compatibility via composer Do php linting via jakub-onderka/php-parallel-lint
21 lines
310 B
YAML
21 lines
310 B
YAML
sudo: false
|
|
language: php
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
|
|
include:
|
|
- php: '7.0'
|
|
- php: '7.1'
|
|
- php: '7.2'
|
|
- php: 'nightly'
|
|
|
|
allow_failures:
|
|
- php: nightly
|
|
|
|
before_script:
|
|
- composer install --prefer-source --quiet --no-interaction
|
|
|
|
# Run test script commands.
|
|
script:
|
|
- composer test
|