Skip to content

CI: add ruff linter / formattter / import sorter and codespell jobs #5

CI: add ruff linter / formattter / import sorter and codespell jobs

CI: add ruff linter / formattter / import sorter and codespell jobs #5

Workflow file for this run

name: Quality Assurance
on: [push, pull_request]
jobs:
codespell:
name: Codespell
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: make qa-codespell
ruff:
name: Python Format and Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: make qa-ruff