We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94ad76e commit 27e92aeCopy full SHA for 27e92ae
.circleci/config.yml
@@ -6,7 +6,15 @@ jobs:
6
- image: crystallang/crystal:0.31.1
7
steps:
8
- checkout
9
- test:
+ 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:
18
<<: *test-template
19
20
@@ -29,7 +37,8 @@ workflows:
29
37
version: 2
30
38
ci:
31
39
jobs:
32
- - test
40
+ - test-crystal-0.31.1
41
+ - test-crystal-0.30.1
33
42
nightly:
34
43
triggers:
35
44
- schedule:
@@ -38,5 +47,6 @@ workflows:
47
branches:
48
only: master
49
50
51
52
- test-mutations
0 commit comments