Skip to content

Commit

Permalink
Add Codespell workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmades committed Jul 28, 2024
1 parent ab50a67 commit fef569f
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/spell-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Spell check

on:
push:
branches:
- master
- 'release/v[0-9]+\.[0-9]+\.[0-9]+'
- "feature/**"
pull_request:
types:
- opened
- synchronize
branches:
- 'release/v[0-9]+\.[0-9]+\.[0-9]+'
- "feature/**"
# Manual trigger
workflow_dispatch:

jobs:
check:
name: Codespell
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: codespell-project/actions-codespell@v2
with:
check_filenames: true

0 comments on commit fef569f

Please sign in to comment.