Skip to content

chore(deps-dev): bump cryptography from 46.0.5 to 46.0.7 #108

chore(deps-dev): bump cryptography from 46.0.5 to 46.0.7

chore(deps-dev): bump cryptography from 46.0.5 to 46.0.7 #108

Workflow file for this run

name: Code Quality Checks
# This workflow runs static analysis that doesn't require secrets
on:
pull_request:
types: [opened, synchronize, reopened]
push:
branches:
- main
env:
PYTHON_VERSION: "3.11"
jobs:
checks:
name: Code Quality Checks
runs-on: ${{ contains(github.server_url, 'github.com') && 'ubuntu-latest' || fromJSON('["self-hosted"]') }}
permissions:
contents: read
steps:
- name: "Checkout PR Code"
uses: actions/checkout@v4
- name: "Install uv"
uses: astral-sh/setup-uv@v3
with:
version: "latest"
enable-cache: true
- name: "Set up Python"
uses: actions/setup-python@v6
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: "Run Ruff Linter"
run: uv run ruff check --output-format=github .
- name: "Run Ruff Formatter Check"
run: uv run ruff format --check --diff .
- name: "Run ty Type Check"
run: uv run ty check --output-format github --python-version ${{ env.PYTHON_VERSION }} .