You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
361 B
YAML
25 lines
361 B
YAML
language: php
|
|
sudo: false
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
include:
|
|
- php: "7.1"
|
|
- php: "7.2"
|
|
- php: "7.3"
|
|
- php: "7.4"
|
|
- php: "8.0"
|
|
- php: "nightly"
|
|
allow_failures:
|
|
- php: "nightly"
|
|
- php: "7.4"
|
|
- php: "8.0"
|
|
|
|
install:
|
|
- composer self-update
|
|
- composer update
|
|
|
|
script:
|
|
- vendor/bin/phpunit
|
|
- vendor/bin/psalm
|