2017-05-07 08:04:49 -04:00
|
|
|
sudo: false
|
|
|
|
language: ruby
|
|
|
|
install:
|
|
|
|
- git clone https://github.com/ruby/mspec.git ../mspec
|
|
|
|
script:
|
2019-04-27 12:53:23 -04:00
|
|
|
- CHECK_LEAKS=true ../mspec/bin/mspec
|
2017-05-07 08:04:49 -04:00
|
|
|
matrix:
|
|
|
|
include:
|
2019-04-27 12:53:23 -04:00
|
|
|
- name: Running each spec twice
|
|
|
|
rvm: 2.5.5
|
|
|
|
script:
|
|
|
|
- CHECK_LEAKS=true ../mspec/bin/mspec -R2 -ff
|
|
|
|
- rvm: 2.4.6
|
2019-03-28 10:22:29 -04:00
|
|
|
- rvm: 2.5.5
|
2019-04-27 12:53:23 -04:00
|
|
|
- rvm: 2.6.3
|
|
|
|
- name: RuboCop Lint Checks
|
|
|
|
rvm: 2.4.6
|
2017-12-27 11:12:47 -05:00
|
|
|
script:
|
2018-12-28 19:22:52 -05:00
|
|
|
- gem install rubocop:0.61.0
|
2017-12-27 11:12:47 -05:00
|
|
|
- rubocop
|
2017-05-07 08:04:49 -04:00
|
|
|
branches:
|
|
|
|
only:
|
|
|
|
- master
|
|
|
|
- /^try/
|
|
|
|
notifications:
|
|
|
|
email:
|
|
|
|
on_success: change
|
|
|
|
on_failure: change
|