summaryrefslogtreecommitdiff
path: root/.github/workflows/codespell.yml
blob: c413a430a5b2974d5a706b7cea5e25b32c550b99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
name: Check spelling with codespell

on: [push, pull_request]

jobs:
  codespell:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v6
    # codespell version should be kept in sync with .pre-commit-config.yml
    - run: pip install --user codespell==2.4.1 tomli
    - run: codespell