-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.travis.yml
More file actions
34 lines (32 loc) · 757 Bytes
/
.travis.yml
File metadata and controls
34 lines (32 loc) · 757 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
---
os: linux
dist: bionic
language: php
git:
depth: 10
quiet: true
jobs:
include:
- &STANDARD_TEST_JOB
stage: "Code style & static code analysis"
php: 7.2
install:
- (composer self-update; true)
- composer install --no-progress --no-suggest --no-interaction --no-cache
script:
- export TRAVIS_PULL_REQUEST TRAVIS_COMMIT_RANGE
- ./dev-tools/php-cs-check.sh
- composer check:analyse
# Sorry, Unit tests are pending!
# - &STANDART_UNIT_TEST_JOB
# <<: *STANDARD_TEST_JOB
# stage: "Unit tests"
# php: 7.2
# script:
# - composer check:test
# -
# <<: *STANDART_UNIT_TEST_JOB
# php: 7.3
# -
# <<: *STANDART_UNIT_TEST_JOB
# php: 7.4