Skip to content
This repository was archived by the owner on Jul 7, 2026. It is now read-only.

chore(deps): bump sentry-sdk from 2.35.0 to 2.35.1 #202

chore(deps): bump sentry-sdk from 2.35.0 to 2.35.1

chore(deps): bump sentry-sdk from 2.35.0 to 2.35.1 #202

Workflow file for this run

name: ruff
permissions:
contents: read
on:
pull_request:
paths:
- '**/*.py'
- 'uv.lock'
- 'pyproject.toml'
workflow_call:
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
persist-credentials: false
- name: Install uv
uses: astral-sh/setup-uv@4959332f0f014c5280e7eac8b70c90cb574c9f9b # v6.6.0
with:
enable-cache: true
cache-dependency-glob: "uv.lock"
- name: Install dependencies
run: uv sync --locked --all-extras --dev
- name: ruff format --check
run: uv run ruff format --check
- name: ruff check
run: uv run ruff check