mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 12:37:00 +01:00
28 lines
524 B
YAML
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
|