Skip to content

Commit 7cb4256

Browse files
committed
Synching with master
2 parents dca3e77 + eda4601 commit 7cb4256

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

.codespellrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[codespell]
2+
skip = datasets,.git,*.pdf,*.svg,deprecated,*.xml,*.mediawiki,*.omn,datasets
3+
ignore-words-list = covert,hed,recuse

.github/workflows/codespell.yaml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
name: Codespell
3+
4+
on:
5+
push:
6+
branches: '*'
7+
pull_request:
8+
branches: '*'
9+
10+
permissions:
11+
contents: read
12+
13+
jobs:
14+
codespell:
15+
name: Check for spelling errors
16+
runs-on: ubuntu-latest
17+
18+
steps:
19+
- name: Checkout
20+
uses: actions/checkout@v4
21+
- name: Codespell
22+
uses: codespell-project/actions-codespell@v2

0 commit comments

Comments
 (0)