mirror of https://github.com/rq/rq.git
38 lines
715 B
YAML
38 lines
715 B
YAML
name: Lint rq
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
lint:
|
|
name: Lint
|
|
runs-on: ubuntu-20.04
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v5.1.0
|
|
with:
|
|
python-version: 3.8
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install black ruff
|
|
|
|
- name: Lint with black
|
|
run: |
|
|
black --check --skip-string-normalization --line-length 120 rq tests
|
|
|
|
- name: Lint with ruff
|
|
run: |
|
|
# stop the build if there are Python syntax errors.
|
|
ruff check --show-source rq tests
|