Skip to content

Commit

Permalink
More openssl logging
Browse files Browse the repository at this point in the history
  • Loading branch information
evgeny-stakewise committed Feb 2, 2025
1 parent 42b002a commit ecb0a33
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,18 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: 3.12.8

- name: Check OpenSSL version
run: "echo \"OpenSSL version\" && python -c \"import ssl; print(ssl.OPENSSL_VERSION)\""

- name: Check system OpenSSL version
run: "echo \"OpenSSL version\" && openssl version"

- name: List installed OpenSSL versions
run: "echo \"Installed OpenSSL versions\" && ls /opt/homebrew/Cellar/openssl@3"

- name: List linked OpenSSL versions
run: "echo \"Linked OpenSSL versions\" && ls -lh /opt/homebrew/opt/openssl*"

- name: Check OpenSSL version used in Python
run: "echo \"OpenSSL version in python\" && python -c \"import ssl; print(ssl.OPENSSL_VERSION)\""

# Install poetry
- name: Load cached Poetry installation
Expand Down

0 comments on commit ecb0a33

Please sign in to comment.