File tree Expand file tree Collapse file tree 1 file changed +27
-4
lines changed Expand file tree Collapse file tree 1 file changed +27
-4
lines changed Original file line number Diff line number Diff line change 1
1
version : 2
2
2
jobs :
3
- build :
3
+ " Test against Ruby 2.4 " :
4
4
docker :
5
- - image : circleci/ruby:2.4.6
6
-
5
+ - image : circleci/ruby:2.4.9
6
+ working_directory : ~/intercom-ruby
7
+ steps :
8
+ - checkout
9
+ - run : bundle install
10
+ - run : bundle exec rake
11
+ " Test against Ruby 2.5 " :
12
+ docker :
13
+ - image : circleci/ruby:2.5.7
7
14
working_directory : ~/intercom-ruby
8
-
9
15
steps :
10
16
- checkout
11
17
- run : bundle install
12
18
- run : bundle exec rake
19
+ " Test against Ruby 2.6 " :
20
+ docker :
21
+ - image : circleci/ruby:2.6.5
22
+ working_directory : ~/intercom-ruby
23
+ steps :
24
+ - checkout
25
+ - run : bundle install
26
+ - run : bundle exec rake
27
+
28
+ workflows :
29
+ version : 2
30
+ build_and_test :
31
+ jobs :
32
+ - " Test against Ruby 2.4"
33
+ - " Test against Ruby 2.5"
34
+ - " Test against Ruby 2.6"
35
+
You can’t perform that action at this time.
0 commit comments