Skip to content

chore(deps): bump cryptography from 46.0.5 to 46.0.6 #88

chore(deps): bump cryptography from 46.0.5 to 46.0.6

chore(deps): bump cryptography from 46.0.5 to 46.0.6 #88

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
version: "latest"
enable-cache: true
- name: Set up Python
run: uv python install 3.11
- name: Install dependencies
run: uv sync --all-extras --dev
- name: Check formatting
run: uv run ruff format --check .
- name: Lint
run: uv run ruff check .
- name: Type check
run: uv run mypy . --ignore-missing-imports || true
- name: Test
run: uv run pytest -v --tb=short || true