We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents dc7d65b + 0a07bc9 commit 0e800e0Copy full SHA for 0e800e0
1 file changed
.circleci/config.yml
@@ -1,12 +1,35 @@
1
version: 2
2
jobs:
3
- build:
+ "Test against Ruby 2.4":
4
docker:
5
- - image: circleci/ruby:2.4.6
6
-
+ - image: circleci/ruby:2.4.9
+ 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
14
working_directory: ~/intercom-ruby
15
steps:
16
- checkout
17
- run: bundle install
18
- run: bundle exec rake
19
+ "Test against Ruby 2.6":
20
21
+ - image: circleci/ruby:2.6.5
22
23
24
25
26
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
0 commit comments