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 <ptoscano@redhat.com>
  • Loading branch information
ptoscano committed Oct 30, 2024
1 parent 7f49e6b commit 0544dc3
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 0544dc3

Please sign in to comment.