You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
852 B
34 lines
852 B
---
|
|
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
|