Skip to content

Bump cryptography from 46.0.5 to 46.0.6 in the uv group across 1 directory #3383

Bump cryptography from 46.0.5 to 46.0.6 in the uv group across 1 directory

Bump cryptography from 46.0.5 to 46.0.6 in the uv group across 1 directory #3383

Workflow file for this run

name: Test
on:
pull_request:
branches:
- "**"
push:
branches:
- master
permissions:
contents: read
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
python-version: ["3.11", "3.12", "3.13", "3.14"]
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Install dependencies
run: |
uv sync --frozen --all-extras
uv tool install tox --with tox-uv --with tox-gh-actions
- name: Run tests with Tox
env:
PYTEST_XDIST_WORKERS: ${{ matrix.os == 'windows-latest' && 0 || 3 }}
run: tox
timeout-minutes: 60