Skip to content
This repository was archived by the owner on May 29, 2026. It is now read-only.

Commit 515312c

Browse files
committed
ci: install openssl on windows runners
1 parent 2e3eade commit 515312c

2 files changed

Lines changed: 14 additions & 0 deletions

File tree

.github/workflows/pkg-test.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,13 @@ jobs:
3131
with:
3232
python-version: ${{ matrix.py-version }}
3333

34+
- name: Install OpenSSL (Windows)
35+
if: runner.os == 'Windows'
36+
shell: pwsh
37+
run: |
38+
choco install openssl --no-progress -y
39+
Add-Content $env:GITHUB_PATH "C:\\Program Files\\OpenSSL-Win64\\bin"
40+
3441
- name: Define venv paths
3542
run: |
3643
if [ "${RUNNER_OS}" = "Windows" ]; then

.github/workflows/run-test.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,13 @@ jobs:
4545
with:
4646
python-version: ${{ matrix.py-version }}
4747

48+
- name: Install OpenSSL (Windows)
49+
if: runner.os == 'Windows'
50+
shell: pwsh
51+
run: |
52+
choco install openssl --no-progress -y
53+
Add-Content $env:GITHUB_PATH "C:\\Program Files\\OpenSSL-Win64\\bin"
54+
4855
- name: Install dependencies
4956
run: uv sync --group dev
5057

0 commit comments

Comments
 (0)