Skip to content

refactor: remove unnecessary hashlib in header template #5

refactor: remove unnecessary hashlib in header template

refactor: remove unnecessary hashlib in header template #5

Workflow file for this run

name: Ruff
on:
pull_request:
paths:
- '**/*.py'
- 'pyproject.toml'
- '.github/workflows/ruff.yml'
push:
branches:
- main
paths:
- '**/*.py'
- 'pyproject.toml'
- '.github/workflows/ruff.yml'
workflow_dispatch:
permissions:
contents: read
jobs:
ruff:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2.0
with:
python-version: "3.12"
- name: Run ruff check
run: uv run ruff check
- name: Run ruff format --check
run: uv run ruff format --check