Skip to content

Commit

Permalink
feat: add CI for codespell
Browse files Browse the repository at this point in the history
  • Loading branch information
mattverse committed Apr 22, 2024
1 parent 1cc1db0 commit 5cdcf96
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Spell Check

on:
pull_request:
push:
branches:
- main
- master

jobs:
spellcheck:
name: Run codespell
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"

- name: Install codespell
run: pip install codespell

- name: Run codespell
run: codespell

0 comments on commit 5cdcf96

Please sign in to comment.