Skip to content

chore(deps): bump astral-sh/setup-uv from 8.0.0 to 8.1.0 in the github-actions group #369

chore(deps): bump astral-sh/setup-uv from 8.0.0 to 8.1.0 in the github-actions group

chore(deps): bump astral-sh/setup-uv from 8.0.0 to 8.1.0 in the github-actions group #369

Workflow file for this run

# SPDX-License-Identifier: Apache-2.0
# Copyright (C) 2025 Marcin Zieba <marcinpsk@gmail.com>
name: Lint and Format
on:
push:
pull_request:
jobs:
format-and-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Install uv
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
- name: Set up Python
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
with:
python-version: '3.12'
- name: Install dependencies
run: uv pip install --system ruff
- name: Run Ruff linting
run: ruff check .
- name: Run Ruff formatting check
run: ruff format --check .