mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-08-04 18:25:04 +02:00
24 lines
No EOL
346 B
YAML
24 lines
No EOL
346 B
YAML
language: php
|
|
|
|
env:
|
|
- SYMFONY_DEPRECATIONS_HELPER=disabled # Disable deprecation warnings
|
|
|
|
# Test for all supported PHP versions
|
|
php:
|
|
- '7.1'
|
|
- '7.2'
|
|
- '7.3'
|
|
- '7.4snapshot'
|
|
- 'nightly'
|
|
|
|
install:
|
|
- composer install
|
|
|
|
script:
|
|
- php bin/phpunit
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
allow_failures:
|
|
- php: 7.4snapshot
|
|
- php: nightly |