Skip to content

deps(deps): bump cryptography from 46.0.3 to 46.0.4 #369

deps(deps): bump cryptography from 46.0.3 to 46.0.4

deps(deps): bump cryptography from 46.0.3 to 46.0.4 #369

Workflow file for this run

name: CI - Format
on:
push:
branches: ["**"]
pull_request:
branches: ["**"]
permissions:
contents: read
jobs:
ruff-format:
name: Ruff Formatting
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: "pip"
- name: Install Ruff
run: |
python -m pip install --upgrade pip
pip install ruff==0.8.4
- name: Check formatting with Ruff
run: ruff format --check src/ tests/