We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a159112 commit 9ad631aCopy full SHA for 9ad631a
1 file changed
.github/workflows/blank.yml
@@ -12,8 +12,10 @@ jobs:
12
runs-on: ubuntu-latest
13
14
steps:
15
+ # Check out the repository
16
- uses: actions/checkout@v4
17
18
+ # Install Crystal and dependencies
19
- name: Install Crystal
20
run: |
21
sudo apt-get update
@@ -24,10 +26,12 @@ jobs:
24
26
libz-dev \
25
27
libyaml-dev \
28
libffi-dev
-
29
+
30
+ # Install shards (Crystal's dependency manager)
31
- name: Install shards
32
- curl -sSL https://github.com/crystal-lang/shards/releases/download/0.10.1/shards-0.10.1-linux-x86_64.tar.gz | tar xz -C /usr/local/bin
33
+ sudo apt-get install -y shards
34
35
+ # Install dependencies using shards
36
- name: Install dependencies
37
run: shards install
0 commit comments