Skip to content

Fix the "Fork me on GitHub" ribbon (#2085) #1583

Fix the "Fork me on GitHub" ribbon (#2085)

Fix the "Fork me on GitHub" ribbon (#2085) #1583

Workflow file for this run

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 --output-format=full rq tests