mirror of
https://github.com/billz/raspap-webgui.git
synced 2023-10-10 13:37:24 +02:00
12a70e1f22
Revamp testing
24 lines
344 B
YAML
24 lines
344 B
YAML
sudo: false
|
|
language: php
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
|
|
include:
|
|
- php: '7.0'
|
|
- php: '7.1'
|
|
- php: '7.2'
|
|
- php: '7.3'
|
|
- php: '7.4'
|
|
- php: 'nightly'
|
|
|
|
allow_failures:
|
|
- php: nightly
|
|
|
|
before_script:
|
|
- composer install --prefer-source --quiet --no-interaction
|
|
|
|
# Run test script commands.
|
|
script:
|
|
- composer test
|