Skip to content

Commit 27e92ae

Browse files
Run tests on both crystal 0.30.1 and 0.31.1
1 parent 94ad76e commit 27e92ae

File tree

1 file changed

+13
-3
lines changed

1 file changed

+13
-3
lines changed

.circleci/config.yml

+13-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,15 @@ jobs:
66
- image: crystallang/crystal:0.31.1
77
steps:
88
- checkout
9-
test:
9+
test-crystal-0.30.1:
10+
<<: *test-template
11+
docker:
12+
- image: crystallang/crystal:0.30.1
13+
steps:
14+
- checkout
15+
- run: shards
16+
- run: SPEC_VERBOSE=1 ./bin/test
17+
test-crystal-0.31.1:
1018
<<: *test-template
1119
steps:
1220
- checkout
@@ -29,7 +37,8 @@ workflows:
2937
version: 2
3038
ci:
3139
jobs:
32-
- test
40+
- test-crystal-0.31.1
41+
- test-crystal-0.30.1
3342
nightly:
3443
triggers:
3544
- schedule:
@@ -38,5 +47,6 @@ workflows:
3847
branches:
3948
only: master
4049
jobs:
41-
- test
50+
- test-crystal-0.31.1
51+
- test-crystal-0.30.1
4252
- test-mutations

0 commit comments

Comments
 (0)