diff options
author | James McCoy <jamessan@jamessan.com> | 2019-01-01 09:23:37 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-01 09:23:37 -0500 |
commit | 340d8535851e4cf878da7992a491c1ecc6113d44 (patch) | |
tree | 10e9693dd8dbef433c8620292fc88a0cc126f5cd | |
parent | 83fca0ab135d1e238fcca80d173229ed0973491c (diff) | |
parent | 57e0a578f027fed99c64c1f3c881e5f59e56a8d6 (diff) | |
download | rneovim-340d8535851e4cf878da7992a491c1ecc6113d44.tar.gz rneovim-340d8535851e4cf878da7992a491c1ecc6113d44.tar.bz2 rneovim-340d8535851e4cf878da7992a491c1ecc6113d44.zip |
Merge pull request #9433 from jamessan/only-lint-master
travis: Only run lint job for master branch/PRs
-rw-r--r-- | .travis.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 425ce662b5..e6b9516b6e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -74,7 +74,8 @@ jobs: - os: osx compiler: gcc osx_image: xcode9.4 # macOS 10.13 - - os: linux + - if: branch = master + os: linux env: CI_TARGET=lint - stage: Flaky builds os: linux |