Skip to content

build(deps): update ruff requirement from <0.9.3 to <0.9.4 in the pip group #1131

build(deps): update ruff requirement from <0.9.3 to <0.9.4 in the pip group

build(deps): update ruff requirement from <0.9.3 to <0.9.4 in the pip group #1131

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- name: deps
run: make dev INSTALL_EXTRA=lint
- name: lint
run: make lint
all-lints-pass:
if: always()
needs:
- lint
runs-on: ubuntu-latest
steps:
- name: check lint jobs
uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # v1.2.2
with:
jobs: ${{ toJSON(needs) }}