Skip to content

Commit 35134a5

Browse files
authored
Merge pull request #168 from devinmatte/master
Adding Basic Travis Testing
2 parents 8977a86 + 8033887 commit 35134a5

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.travis.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
language: php
2+
php:
3+
- 7.0
4+
- 7.1
5+
- 7.2
6+
- hhvm
7+
- nightly
8+
9+
matrix:
10+
allow_failures:
11+
- php: 7.0
12+
- php: hhvm
13+
- php: nightly
14+
15+
script:
16+
- if find . -name "*.php" ! -path "./vendor/*" -exec php -l {} 2>&1 \; | grep "syntax error, unexpected"; then exit 1; fi

0 commit comments

Comments
 (0)