Skip to content

add codespell action #2

add codespell action

add codespell action #2

Workflow file for this run

name: codespell
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
codespell:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: '3.14'
- name: Install codespell
run: pip install codespell
- name: Run codespell
run: |
codespell .