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.
3333<p >Add this content to your GitHub repository as <code >.github/workflows/ci.yml</code >:</p >
3434
3535``` 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+
3639on :
3740 push :
3841 pull_request :
5356 - os : ubuntu-latest
5457 {%- if crystal_ver %}
5558 - os : ubuntu-latest
56- crystal : 0.35.1
59+ crystal : 1.0.0
5760 {%- endif %}
5861 {%- if crystal_nightly %}
5962 - os : ubuntu-latest
7073 os : [ubuntu-latest{% if os_mac %}, macos-latest{% endif %}{% if os_win %}, windows-latest{% endif %}]
7174 {%- endif %}
7275 {%- 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 %}]
7477 {%- endif %}
7578 {%- endif %}
7679 {%- endif %}
You can’t perform that action at this time.
0 commit comments