kanidm/.github/workflows/codespell.yml
James Hodgkinson b8dcb47f93
Spell checking and stuff (#1314)
* codespell run and spelling fixes
* some clippying
* minor fmt fix
* making yamllint happy
* adding codespell github action
2023-01-10 13:50:53 +10:00

28 lines
524 B
YAML

---
name: Spell Check
"on":
push:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
codespell:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
clean: false
- name: Install python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install and run codespell
run: |
python -m pip install codespell
make codespell