Skip to content

Linting

Linting #85

Workflow file for this run

name: Linting
on:
push:
branches:
- main
pull_request:
branches:
- main
release:
types:
- published
schedule:
# Run nightly to check that tests are working with latest dependencies
- cron: "0 0 * * *"
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.12"]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: |
pip install -U pip
pip install ".[tests]"
- name: Lint with isort
if: ${{ always() }}
run: isort --check-only --profile black src tests
- name: Lint with black
if: ${{ always() }}
run: black --check src tests
- name: Lint with flake8
if: ${{ always() }}
run: flake8 src tests