Skip to content

Commit

Permalink
ci: add workflow for codespell
Browse files Browse the repository at this point in the history
Add a simple workflow to run codespell as part of the checks for every
PR.

Signed-off-by: Pino Toscano <[email protected]>
  • Loading branch information
ptoscano authored and m-horky committed Oct 31, 2024
1 parent 7f49e6b commit be572f2
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: codespell

on:
pull_request:
workflow_dispatch:

jobs:
codespell:
runs-on: "ubuntu-latest"

steps:
- uses: actions/checkout@v4

- uses: codespell-project/actions-codespell@v2

0 comments on commit be572f2

Please sign in to comment.