Bump cryptography from 49.0.0 to 50.0.0 (#23) #11
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: Run Tests | |
| on: | |
| push: | |
| branches: | |
| - '**' | |
| tags-ignore: | |
| - '*' | |
| pull_request: | |
| jobs: | |
| test: | |
| strategy: | |
| matrix: | |
| os: [ubuntu-22.04, windows-2022, macos-14] | |
| python-version: ['3.14'] | |
| include: | |
| - os: ubuntu-22.04 | |
| python-version: '3.9' | |
| - os: ubuntu-22.04 | |
| python-version: '3.12' | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Check out repository code | |
| uses: actions/checkout@v5 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Set up uv | |
| uses: astral-sh/setup-uv@v8.1.0 | |
| - name: Install dependencies | |
| run: uv sync --group dev | |
| - name: Build distributions | |
| run: uv build | |
| - name: Run tests | |
| run: uv run pytest |