Skip to content

Run linters

Run linters #1723

Workflow file for this run

---
name: Run linters
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
# Run the linters tests every 8 hours.
# This will help to identify faster if
# there is a CI failure related to a
# change in any dependency.
schedule:
- cron: '0 */8 * * *'
jobs:
black:
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v4
- name: Run black
uses: psf/black@stable
isort:
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v4
- name: Run isort
uses: isort/[email protected]
flake8:
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v4
- name: Install flake8
run: |
python3 -m pip install -U pip
python3 -m pip install -U flake8
- name: Run flake8
run: flake8