Skip to content

Bump codecov/codecov-action from 6.0.0 to 6.0.1 in the ci-dependencies group across 1 directory #256

Bump codecov/codecov-action from 6.0.0 to 6.0.1 in the ci-dependencies group across 1 directory

Bump codecov/codecov-action from 6.0.0 to 6.0.1 in the ci-dependencies group across 1 directory #256

Workflow file for this run

name: Lint
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
name: Lint & Type Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Ruff check
run: ruff check .
- name: Ruff format check
run: ruff format --check .
- name: isort check
run: isort --check src/
- name: Pyright
run: pyright