diff options
author | MaurĂcio Meneghini Fauth <mauricio@fauth.dev> | 2019-12-15 16:01:40 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-15 16:01:40 -0300 |
commit | fa8b1dd561e954c75015f8c7745b3d8713342d94 (patch) | |
tree | 6bb285ab1e311104f05f90cad6495240411407a0 | |
parent | 861a12383085b2f3d522577110579141bc01e3ca (diff) | |
parent | ac4d51bbd3b921fb361a67f7b98bbcbcec6a65bc (diff) | |
download | sql-parser-fa8b1dd561e954c75015f8c7745b3d8713342d94.zip sql-parser-fa8b1dd561e954c75015f8c7745b3d8713342d94.tar.gz sql-parser-fa8b1dd561e954c75015f8c7745b3d8713342d94.tar.bz2 |
Merge pull request #273 from mauriciofauth/backward-compatibility-check
Add backward compatibility check
Adds a tool that can be used to verify backward compatibility breaks.
https://github.com/Roave/BackwardCompatibilityCheck
-rw-r--r-- | .travis.yml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 137476a..328bc58 100644 --- a/.travis.yml +++ b/.travis.yml @@ -28,6 +28,13 @@ matrix: - php: nightly install: - composer install --no-interaction --ignore-platform-reqs + - php: 7.4 + name: "Backward compatibility check" + install: + - composer require --dev roave/backward-compatibility-check + - composer install --no-interaction + script: + - vendor/bin/roave-backward-compatibility-check install: - composer install --no-interaction |