Skip to content

build(deps-dev): bump coverage from 7.13.3 to 7.13.4 #298

build(deps-dev): bump coverage from 7.13.3 to 7.13.4

build(deps-dev): bump coverage from 7.13.3 to 7.13.4 #298

Workflow file for this run

name: lint
on: [push, pull_request]
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Use Python
uses: actions/setup-python@v6
with:
cache: pip
python-version-file: pyproject.toml
- name: Install dependencies
run: pip install -e .[lint]
- name: Type check
run: mypy .
- name: Run Black
run: black --check .
- name: Run Ruff
run: ruff check
- name: Run pre-commit hooks
run: pre-commit run --all-files