Skip to content

Commit a0b7929

Browse files
committed
Check that dependencies of stdlib can be linked
1 parent b161f16 commit a0b7929

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

.github/workflows/main.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,11 @@ jobs:
5050
v='${{ matrix.config.crystal }}'
5151
crystal --version | grep "$v"
5252
if: ${{ contains(matrix.config.crystal, '.') }}
53+
- run: |
54+
crystal eval 'require "yaml"'
55+
- run: |
56+
crystal eval 'require "openssl"; require "big"; require "xml"'
57+
if: ${{ runner.os != 'Windows' }}
5358
5459
- run: |
5560
shards --version

.github/workflows/release.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,11 @@ jobs:
5050
v='${{ matrix.config.crystal }}'
5151
crystal --version | grep "$v"
5252
if: ${{ contains(matrix.config.crystal, '.') }}
53+
- run: |
54+
crystal eval 'require "yaml"'
55+
- run: |
56+
crystal eval 'require "openssl"; require "big"; require "xml"'
57+
if: ${{ runner.os != 'Windows' }}
5358
5459
- run: |
5560
shards --version

0 commit comments

Comments
 (0)