Skip to content

Commit

Permalink
Merge pull request #69 from IanCa/develop
Browse files Browse the repository at this point in the history
Add codespell per Kay
  • Loading branch information
VisLab authored Sep 21, 2024
2 parents f6769d2 + aeb4922 commit 6223668
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .codespellrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[codespell]
skip = *index.html,*.lock,*.css
ignore-words-list = Covert
22 changes: 22 additions & 0 deletions .github/workflows/codespell.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
name: Codespell

on:
push:
branches: [develop]
pull_request:
branches: [develop]

permissions:
contents: read

jobs:
codespell:
name: Check for spelling errors
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4
- name: Codespell
uses: codespell-project/actions-codespell@v2

0 comments on commit 6223668

Please sign in to comment.