Skip to content

Update ruff requirement from >=0.5.1,<0.6.8 to >=0.5.1,<0.6.10 #2009

Update ruff requirement from >=0.5.1,<0.6.8 to >=0.5.1,<0.6.10

Update ruff requirement from >=0.5.1,<0.6.8 to >=0.5.1,<0.6.10 #2009

Workflow file for this run

---
name: Lint
on: [push, pull_request] # yamllint disable-line rule:truthy
jobs:
yaml-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- run: pip install yamllint
- run: yamllint .
flake8-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- run: pip install flake8
- run: flake8 .
ruff-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- run: pip install ruff
- run: ruff format .
- run: ruff check --fix .
pylint-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- run: pip install pylint
- run: pylint swarms --recursive=y