Skip to content

Commit

Permalink
ci: add codespell workflow
Browse files Browse the repository at this point in the history
Add a simple workflow to run codespell on push and for pull requests.
It uses the official action of the codespell project.

Signed-off-by: Pino Toscano <[email protected]>
  • Loading branch information
ptoscano committed Oct 30, 2024
1 parent 8a80906 commit 43e169d
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
name: codespell
on: # yamllint disable-line rule:truthy
push:
branches:
- main
- master
pull_request:

jobs:
codespell:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4

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

0 comments on commit 43e169d

Please sign in to comment.