Skip to content

Commit 5ed0302

Browse files
committed
move to circleci
1 parent 4d17704 commit 5ed0302

File tree

2 files changed

+43
-7
lines changed

2 files changed

+43
-7
lines changed

.circleci/config.yml

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
version: 2.1
2+
3+
workflows:
4+
ruby-tests:
5+
jobs:
6+
- unit-tests:
7+
name: ruby24
8+
version: "2.4.6"
9+
- unit-tests:
10+
name: ruby25
11+
version: "2.5.5"
12+
requires:
13+
- ruby24
14+
- unit-tests:
15+
name: ruby27
16+
version: "2.7.5"
17+
requires:
18+
- ruby25
19+
- unit-tests:
20+
name: ruby30
21+
version: "3.0.0"
22+
requires:
23+
- ruby27
24+
25+
jobs:
26+
unit-tests:
27+
parameters:
28+
version:
29+
type: string
30+
docker:
31+
- image: cimg/ruby:<< parameters.version >>
32+
steps:
33+
- checkout
34+
- run:
35+
name: Versions
36+
command: |
37+
echo "ruby: $(ruby --version)"
38+
- run:
39+
name: Install dependencies
40+
command: bundle install
41+
- run:
42+
name: Run tests
43+
command: bundle exec rspec

.travis.yml

-7
This file was deleted.

0 commit comments

Comments
 (0)