Skip to content

Commit c797e25

Browse files
committed
Install openssl in CI/release workflow.
1 parent d74caaf commit c797e25

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/CI.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,6 @@ name: CI
88
on:
99
pull_request:
1010
branches: [main]
11-
paths:
12-
- src/**
13-
- python/**
14-
- "*.toml"
1511
push:
1612
branches: [main]
1713
paths:
@@ -36,6 +32,9 @@ jobs:
3632
- uses: actions/setup-python@v5
3733
with:
3834
python-version: 3.x
35+
- name: install packages
36+
if: ${{ matrix.platform.os == 'linux' }}
37+
run: sudo apt-get install pkg-config libssl-dev
3938
- name: Build wheels
4039
uses: PyO3/maturin-action@v1
4140
with:

0 commit comments

Comments
 (0)