Skip to content

Commit bea680b

Browse files
committed
Add system dependencies installation step in CI workflow
- Updated the GitHub Actions workflow to include a step for installing necessary system dependencies, ensuring the environment is properly set up for subsequent tasks.
1 parent bcd95fa commit bea680b

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

.github/workflows/crystal.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ jobs:
1414
steps:
1515
- uses: actions/checkout@v1
1616

17+
- name: Install system dependencies
18+
run: apt-get update && apt-get install -y libreadline-dev libevent-dev libssl-dev libxml2-dev libyaml-dev libgmp-dev
19+
1720
- name: Install dependencies
1821
run: shards install
1922

0 commit comments

Comments
 (0)