-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
41 lines (31 loc) · 753 Bytes
/
.travis.yml
File metadata and controls
41 lines (31 loc) · 753 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
35
36
37
38
39
40
41
language: php
php:
- '8.1'
- '8.2'
- '8.3'
- '8.4'
- nightly
env:
- TESTER_PHP_BIN="php"
- TESTER_PHP_BIN="phpdbg"
before_install:
- composer self-update
install:
- composer install --no-interaction --prefer-source
matrix:
exclude:
- php: 8.2
env: TESTER_PHP_BIN="phpdbg"
- php: 8.3
env: TESTER_PHP_BIN="phpdbg"
- php: 8.4
env: TESTER_PHP_BIN="phpdbg"
- php: nightly
env: TESTER_PHP_BIN="phpdbg"
allow_failures:
- php: nightly
script:
- ./vendor/bin/tester ./tests -p $TESTER_PHP_BIN -s --coverage coverage.html --coverage-src src/Parsem
after_failure:
# Print *.actual file contents
- for i in $(find ./tests -name \*.actual); do echo "--- $i"; cat $i; echo; echo; done