Skip to content

Commit

Permalink
Fix logging
Browse files Browse the repository at this point in the history
  • Loading branch information
evgeny-stakewise committed Feb 2, 2025
1 parent ecb0a33 commit 8f1e516
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,13 @@ jobs:
python-version: 3.12.8

- 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"
run: "openssl version"

- name: List linked OpenSSL versions
run: "echo \"Linked OpenSSL versions\" && ls -lh /opt/homebrew/opt/openssl*"
run: "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)\""
run: "python -c \"import ssl; print(ssl.OPENSSL_VERSION)\""

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

0 comments on commit 8f1e516

Please sign in to comment.