diff options
author | Maurício Meneghini Fauth <mauricio@fauth.dev> | 2019-12-16 16:12:45 -0300 |
---|---|---|
committer | Maurício Meneghini Fauth <mauricio@fauth.dev> | 2019-12-16 16:12:45 -0300 |
commit | 9ef51add6d8f732cd52f07874f0b4beb0b9ac068 (patch) | |
tree | a720b2092df8d612355ac812109cf5fcc569adb6 | |
parent | 2ce3ddecec1721a494a2557a9e628e6142fbe5c6 (diff) | |
download | sql-parser-9ef51add6d8f732cd52f07874f0b4beb0b9ac068.zip sql-parser-9ef51add6d8f732cd52f07874f0b4beb0b9ac068.tar.gz sql-parser-9ef51add6d8f732cd52f07874f0b4beb0b9ac068.tar.bz2 |
Add PHPStan and phpcs to the Travis build matrix
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
-rw-r--r-- | .travis.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 328bc58..adb479c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,6 +14,12 @@ matrix: - php: nightly include: - php: 7.1 + name: "Coding standard check" + script: vendor/bin/phpcs + - php: 7.1 + name: "PHPStan" + script: vendor/bin/phpstan analyze + - php: 7.1 name: "phpmyadmin/motranslator" install: - composer require "phpmyadmin/motranslator:^3.0" |