We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent acd658b commit d2fe3c8Copy full SHA for d2fe3c8
1 file changed
.github/workflows/ci.yml
@@ -17,7 +17,9 @@ jobs:
17
uses: actions/checkout@v3
18
- name: Install libyaml
19
if: "matrix.crystal == '1.0' && matrix.os == 'macos-latest'"
20
- run: brew install libyaml
+ run: |
21
+ sudo mkdir -p /opt/crystal/embedded/lib
22
+ sudo ln -sf $(brew --prefix libyaml)/lib/libyaml-0.2.dylib /opt/crystal/embedded/lib/libyaml-0.2.dylib
23
- name: Install Crystal
24
uses: crystal-lang/install-crystal@v1
25
with:
0 commit comments