forked from whitequark/parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
42 lines (42 loc) · 1.12 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
dist: trusty
language: ruby
matrix:
include:
- name: 2.4.9 / Parser tests
rvm: 2.4.9
script: bundle exec rake test_cov
- name: 2.5.8 / Parser tests
rvm: 2.5.8
script: bundle exec rake test_cov
- name: 2.6.6 / Parser tests
rvm: 2.6.6
script: bundle exec rake test_cov
- name: 2.7.1 / Parser tests
rvm: 2.7.1
script: bundle exec rake test_cov
- name: ruby-head / Parser tests
rvm: ruby-head
script: bundle exec rake test_cov
- name: jruby-9.1.15.0 / Parser tests
rvm: jruby-9.1.15.0
script: bundle exec rake test_cov
- name: rbx-2 / Parser tests
rvm: rbx-2
script: bundle exec rake test_cov
- name: 2.5.8 / Rubocop tests
rvm: 2.5.8
script: ./ci/run_rubocop_specs
- name: 2.6.6 / Rubocop tests
rvm: 2.6.6
script: ./ci/run_rubocop_specs
- name: 2.7.1 / Rubocop tests
rvm: 2.7.1
script: ./ci/run_rubocop_specs
allow_failures:
- rvm: ruby-head
- rvm: rbx-2
- script: ./ci/run_rubocop_specs
before_install:
- gem install bundler -v '< 2'
- bundle --version
- gem --version