Skip to content

Commit 5cf8ed6

Browse files
committed
multiple jobs?
1 parent 58c8d97 commit 5cf8ed6

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

.circleci/config.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,26 @@ orbs:
44
ruby: circleci/ruby@1.2.0
55

66
jobs:
7-
test:
7+
"test/ruby:2.7":
88
docker:
99
- image: cimg/ruby:2.7
1010
steps:
1111
- checkout
1212
- run: gem install bundler
1313
- run: bundle
1414
- run: bundle exec rspec
15+
"test/ruby:2.6":
16+
docker:
17+
- image: cimg/ruby:2.6
18+
steps:
19+
- checkout
20+
- run: gem install bundler
21+
- run: bundle
22+
- run: bundle exec rspec
1523

1624
workflows:
1725
tests:
1826
jobs:
19-
- test
27+
- "test/ruby:2.7"
28+
- "test/ruby:2.6"
2029

0 commit comments

Comments
 (0)