chore(deps-dev): bump cryptography from 48.0.1 to 50.0.0 #2155
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: Code testing | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| python-version: ["3.11", "3.12", "3.13", "3.14"] | |
| steps: | |
| - name: Harden Runner | |
| if: runner.os == 'Linux' | |
| uses: step-security/harden-runner@v2.16.0 | |
| with: | |
| egress-policy: audit | |
| - uses: actions/checkout@v6.0.2 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v6.2.0 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install Poetry | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install poetry==2.1.3 | |
| - name: Install dependencies with Poetry | |
| run: | | |
| poetry install --all-extras --with dev | |
| - name: Testing with pytest | |
| run: poetry run pytest ./tests/ |