Skip to content

Commit

Permalink
ci: Create a spellcheck (#55)
Browse files Browse the repository at this point in the history
  • Loading branch information
TheGiraffe3 authored Dec 1, 2024
1 parent 0a73c8b commit 09f4a82
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/spellcheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Spellcheck

on: [push, pull_request]

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

jobs:
spellcheck:
name: Spelling
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
show-progress: false
- uses: codespell-project/actions-codespell@master
with:
builtin: clear,en-GB_to_en-US
path: _posts,

0 comments on commit 09f4a82

Please sign in to comment.