Skip to content

Commit

Permalink
add codespell action (#395)
Browse files Browse the repository at this point in the history
  • Loading branch information
t-bltg authored Nov 1, 2024
1 parent c5c1e44 commit 56b40b3
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Run codespell on source files

on: [pull_request]

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true

jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: codespell-project/actions-codespell@v2
with:
ignore_words_list: Missings,coo,ue,fo,ans
only_warn: 1

0 comments on commit 56b40b3

Please sign in to comment.