Skip to content

Commit

Permalink
Create a spellcheck
Browse files Browse the repository at this point in the history
  • Loading branch information
TheGiraffe3 authored Nov 24, 2024
1 parent 0a73c8b commit bbcabd5
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:
ref: ${{ github.event.pull_request.head.sha }}
show-progress: false
- uses: codespell-project/actions-codespell@master
with:
path: _posts,

0 comments on commit bbcabd5

Please sign in to comment.