Skip to content

Merge pull request #650 from evelynmitchell/yamllintremove #2210

Merge pull request #650 from evelynmitchell/yamllintremove

Merge pull request #650 from evelynmitchell/yamllintremove #2210

Workflow file for this run

---
name: Lint
on: [push, pull_request]
jobs:
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