Skip to content

Commit 9ad631a

Browse files
committed
workflows: blank
1 parent a159112 commit 9ad631a

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/blank.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,10 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15+
# Check out the repository
1516
- uses: actions/checkout@v4
1617

18+
# Install Crystal and dependencies
1719
- name: Install Crystal
1820
run: |
1921
sudo apt-get update
@@ -24,10 +26,12 @@ jobs:
2426
libz-dev \
2527
libyaml-dev \
2628
libffi-dev
27-
29+
30+
# Install shards (Crystal's dependency manager)
2831
- name: Install shards
2932
run: |
30-
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
3134
35+
# Install dependencies using shards
3236
- name: Install dependencies
3337
run: shards install

0 commit comments

Comments
 (0)