Skip to content
This repository has been archived by the owner on Jan 7, 2023. It is now read-only.

Commit

Permalink
ci: install pkg-config on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Stebalien committed Aug 27, 2021
1 parent 3dc502f commit 81aab19
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/actions/go-test-setup/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: installssl
description: Install OpenSSL

runs:
using: "composite"
steps:
- name: Installing OpenSSL
shell: bash
run: |
if [[ "$(go env GOOS)" == "windows" ]]; then
#choco install openssl
choco install pkgconfiglite
fi

0 comments on commit 81aab19

Please sign in to comment.