Ignore incidental OpenSSLError in cert scan, ref #690 #202
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Test Module Setup | |
| on: | |
| push: | |
| branches: [ release ] | |
| pull_request: | |
| branches: [ release ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: 3.9 | |
| - name: Install pip | |
| run: | | |
| python -m pip install --upgrade pip setuptools | |
| - name: Test SSLyze module setup | |
| run: | | |
| python -m pip install -e . | |
| cd docs # Switch folder to avoid conflicts between ./sslyze and the installed sslyze module | |
| python ../api_sample.py |