Skip to content

Replace pylint with ruff #34

Replace pylint with ruff

Replace pylint with ruff #34

Workflow file for this run

name: Code Quality
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: "3.7"
- run: pip install --upgrade pip
- run: pip install types-setuptools "ruff<1" "mypy<2" "black<23" "isort<6" pytest "aiohttp<3.8" pyzmq "requests<3" "types-requests<3" websockets
- run: ruff check .
- run: mypy --strict --exclude 'docs' --exclude 'examples/requests_client_py310.py' .
- run: black --check --exclude 'docs' .
- run: isort --check --profile black .
- run: pytest tests