Skip to content

some errrors as it picks out link images in buttons but pretty decent #34

some errrors as it picks out link images in buttons but pretty decent

some errrors as it picks out link images in buttons but pretty decent #34

Workflow file for this run

name: Lint
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install uv
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
- name: Install dependencies
run: |
uv sync
uv pip install ".[dev]"
- name: Run ruff
run: |
uv run ruff check .
- name: Run black
run: |
uv run black --check .