Skip to content

Commit

Permalink
ci: Add spellcheck workflow
Browse files Browse the repository at this point in the history
This commits adds a workflow file which triggers `make spellcheck`
for every opened PR.

Signed-off-by: Dylan Reimerink <[email protected]>
  • Loading branch information
dylandreimerink committed Jul 28, 2024
1 parent 78d23ee commit 85e7b91
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/spellcheck.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Spellcheck

on:
pull_request: {}
push:
branches:
- master

jobs:
spellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run spellcheck
run: |
make spellcheck

0 comments on commit 85e7b91

Please sign in to comment.