-
Notifications
You must be signed in to change notification settings - Fork 2
/
.travis.yml
36 lines (36 loc) · 889 Bytes
/
.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
---
language: ruby
before_install:
- gem update --system
- gem install bundler
install: bundle install --jobs=3 --retry=3
cache: bundler
branches:
only:
- master
jobs:
include:
- rvm: 2.5.1
gemfile: ./rails_5_test_app/Gemfile
script: cd rails_5_test_app && bundle exec rspec
- rvm: 2.5.1
gemfile: ./rails_6_test_app/Gemfile
script: cd rails_6_test_app && bundle exec rspec
- rvm: 2.7.2
gemfile: ./rails_6_test_app/Gemfile
script: cd rails_6_test_app && bundle exec rspec
- rvm: 3.0.0
gemfile: ./rails_6_test_app/Gemfile
script: cd rails_6_test_app && bundle exec rspec
- rvm: 2.7.2
gemfile: Gemfile
script: bundle exec rubocop
- rvm: 2.7.2
gemfile: Gemfile
script: bundle exec rspec
- rvm: 3.0.0
gemfile: Gemfile
script: bundle exec rubocop
- rvm: 3.0.0
gemfile: Gemfile
script: bundle exec rspec