diff options
author | Anton Titov <[email protected]> | 2019-12-26 14:52:08 +0300 |
---|---|---|
committer | GitHub <[email protected]> | 2019-12-26 14:52:08 +0300 |
commit | 170913cd222a13863d46dd77ccc88d99c32829db (patch) | |
tree | 2eda37a4a0c4b5b65ad9a0df067f466be9778707 /.travis.yml | |
parent | 1737dbb730de9d061c8b03733400a7b292e71822 (diff) | |
parent | ad5f8449d3cdcfc17804c1aa8d3415db569b4c1b (diff) |
Merge pull request #229 from tarampampam/master
Optimize GitHub Actions workflow and integrate static code analyzer (phpstan)
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index f3955eb9..a501f7ce 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,6 +13,7 @@ install: - php composer-setup.php - php composer.phar install --no-interaction --prefer-source - find src/ -name "*.php" -print0 | xargs -0 -n1 -P8 php -l + - composer analyze - chmod +x bin/rr && bin/rr get-binary script: @@ -72,4 +73,4 @@ jobs: - sudo add-apt-repository -y ppa:ondrej/php - sudo apt-get update - sudo apt-get install -y php7.4-cli php7.4-curl - - sudo cp `which php7.4` `which php`
\ No newline at end of file + - sudo cp `which php7.4` `which php` |