mirror of
https://github.com/browser-use/browser-use
synced 2026-04-22 17:45:09 +02:00
55 lines
1.3 KiB
YAML
55 lines
1.3 KiB
YAML
name: lint
|
|
|
|
# Cancel in-progress runs when a new commit is pushed to the same branch/PR
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- stable
|
|
- 'releases/**'
|
|
tags:
|
|
- '*'
|
|
pull_request:
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
lint-syntax:
|
|
name: syntax-errors
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: astral-sh/setup-uv@v5
|
|
with:
|
|
enable-cache: true
|
|
- run: uv run ruff check --no-fix --select PLE
|
|
|
|
lint-style:
|
|
name: code-style
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: astral-sh/setup-uv@v5
|
|
with:
|
|
enable-cache: true
|
|
- run: uv python install 3.11
|
|
- run: uv sync --dev --all-extras --python 3.11
|
|
- run: uv run --no-sync pre-commit run --all-files --show-diff-on-failure
|
|
|
|
lint-typecheck:
|
|
name: type-checker
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: astral-sh/setup-uv@v6
|
|
with:
|
|
enable-cache: true
|
|
- run: uv sync --dev --all-extras # install extras for examples to avoid pyright missing imports errors-
|
|
- run: uv run --no-sync pyright
|