Skip to content

chore(deps): update github-actions #244

chore(deps): update github-actions

chore(deps): update github-actions #244

Workflow file for this run

name: check
on:
pull_request:
types:
- opened
- reopened
- synchronize
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
check:
runs-on: ubuntu-24.04
timeout-minutes: 5
permissions:
contents: read
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Install uv
uses: astral-sh/setup-uv@b5f58b2abc5763ade55e4e9d0fe52cd1ff7979ca # v5.2.1
with:
version: "0.4.17"
enable-cache: true
- name: Set up Python
run: uv python install
- name: Install dependencies
id: install
run: |
uv sync --dev --frozen
- name: lint
if: steps.install.outcome == 'success'
run: |
uv run ruff check --output-format github .
- name: check format
if: steps.install.outcome == 'success'
run: |
uv run ruff format --check .