mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
28 lines
564 B
YAML
28 lines
564 B
YAML
sudo: false
|
|
language: ruby
|
|
install:
|
|
- git clone https://github.com/ruby/mspec.git ../mspec
|
|
script:
|
|
- CHECK_LEAKS=true ../mspec/bin/mspec
|
|
matrix:
|
|
include:
|
|
- name: Running each spec twice
|
|
rvm: 2.5.5
|
|
script:
|
|
- CHECK_LEAKS=true ../mspec/bin/mspec -R2 -ff
|
|
- rvm: 2.4.6
|
|
- rvm: 2.5.5
|
|
- rvm: 2.6.3
|
|
- name: RuboCop Lint Checks
|
|
rvm: 2.4.6
|
|
script:
|
|
- gem install rubocop:0.61.0
|
|
- rubocop
|
|
branches:
|
|
only:
|
|
- master
|
|
- /^try/
|
|
notifications:
|
|
email:
|
|
on_success: change
|
|
on_failure: change
|