Skip to content

PYTHON-4687: Make lint fixes provided by pre-commit #1

PYTHON-4687: Make lint fixes provided by pre-commit

PYTHON-4687: Make lint fixes provided by pre-commit #1

Workflow file for this run

name: Pipeline Lint
on:
pull_request:
workflow_dispatch:
concurrency:
group: tests-${{ github.ref }}
cancel-in-progress: true
defaults:
run:
shell: bash -eux {0}
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install Python dependencies
run: |
python -m pip install -U pip pre-commit
- name: Run linters
run: |
pre-commit run --hook-stage=manual --all-files