Skip to content

[docs]: updating badges #52

[docs]: updating badges

[docs]: updating badges #52

Workflow file for this run

name: Lint
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12", "3.13"]
steps:
- uses: actions/checkout@v3
- name: Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .['linting']
- name: run codespell
run: codespell ./src
- name: run isort
run: isort ./src
- name: run pylint
run: pylint ./src
- name: run black
run: black ./src