Skip to content

Commit c8c62e5

Browse files
Add introductory comment to configurator content (#6)
1 parent 80e31f4 commit c8c62e5

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

docs/configurator.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff 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+
3639
on:
3740
push:
3841
pull_request:
@@ -53,7 +56,7 @@ jobs:
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
@@ -70,7 +73,7 @@ jobs:
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 %}

0 commit comments

Comments
 (0)