Skip to content

Lint code with Ruff #2583

Lint code with Ruff

Lint code with Ruff #2583

Workflow file for this run

name: Check style
on:
push:
branches: [ master ]
pull_request:
jobs:
codespell:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: codespell-project/actions-codespell@v1
with:
only_warn: 1
ignore_words_list: ibrary,nd
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: chartboost/ruff-action@v1
with:
version: 0.7.2