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 ce3c26d commit cbeb12aCopy full SHA for cbeb12a
.github/workflows/blank.yml
@@ -10,11 +10,20 @@ on:
10
jobs:
11
build:
12
runs-on: ubuntu-latest
13
+
14
steps:
15
- uses: actions/checkout@v4
16
- - name: Set up Crystal
17
- uses: crystal-lang/setup-crystal@v1
+ - name: Install Crystal
18
+ run: |
19
+ sudo apt-get update
20
+ sudo apt-get install -y \
21
+ crystal \
22
+ libssl-dev \
23
+ libreadline-dev \
24
+ libz-dev \
25
+ libyaml-dev \
26
+ libffi-dev
27
28
- name: Install dependencies
- run: shards install
29
+ run: shards install
0 commit comments