Skip to content

Commit 921abb3

Browse files
committed
add infection to travis ci
1 parent 3459eb5 commit 921abb3

File tree

1 file changed

+15
-6
lines changed

1 file changed

+15
-6
lines changed

.travis.yml

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,24 @@
11
language: php
22
php:
3-
- '7.1'
4-
- '7.2'
5-
- '7.3'
6-
- '7.4snapshot'
7-
- 'nightly'
3+
- '7.1'
4+
- '7.2'
5+
- '7.3'
6+
- '7.4snapshot'
7+
- 'nightly'
88

99
matrix:
1010
allow_failures:
1111
- php: '7.4snapshot'
1212
- php: 'nightly'
1313

1414
before_script:
15-
- "composer install"
15+
- "composer install"
16+
- wget https://github.com/infection/infection/releases/download/0.13.0/infection.phar
17+
- wget https://github.com/infection/infection/releases/download/0.13.0/infection.phar.asc
18+
- gpg --keyserver hkps.pool.sks-keyservers.net --recv-keys 493B4AA0
19+
- gpg --with-fingerprint --verify infection.phar.asc infection.phar
20+
- chmod +x infection.phar
21+
- ./infection.phar self-update
22+
23+
script:
24+
- ./infection.phar --min-msi=48 --threads=4

0 commit comments

Comments
 (0)