File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -33,6 +33,9 @@ Set up your Crystal project on GitHub for continuous testing.
33
33
<p >Add this content to your GitHub repository as <code >.github/workflows/ci.yml</code >:</p >
34
34
35
35
``` yaml
36
+ # This CI job installs Crystal and shard dependencies, then executes `crystal spec` to run the test suite
37
+ # More configuration options are available at https://crystal-lang.github.io/install-crystal/configurator.html
38
+
36
39
on :
37
40
push :
38
41
pull_request :
53
56
- os : ubuntu-latest
54
57
{%- if crystal_ver %}
55
58
- os : ubuntu-latest
56
- crystal : 0.35.1
59
+ crystal : 1.0.0
57
60
{%- endif %}
58
61
{%- if crystal_nightly %}
59
62
- os : ubuntu-latest
70
73
os : [ubuntu-latest{% if os_mac %}, macos-latest{% endif %}{% if os_win %}, windows-latest{% endif %}]
71
74
{%- endif %}
72
75
{%- if crystal_nightly or crystal_ver %}
73
- crystal : [{% if crystal_ver %}0.35.1 , {% endif %}latest{% if crystal_nightly %}, nightly{% endif %}]
76
+ crystal : [{% if crystal_ver %}1.0.0 , {% endif %}latest{% if crystal_nightly %}, nightly{% endif %}]
74
77
{%- endif %}
75
78
{%- endif %}
76
79
{%- endif %}
You can’t perform that action at this time.
0 commit comments