Skip to content

Commit

Permalink
Add spellchecker job
Browse files Browse the repository at this point in the history
  • Loading branch information
MegaRedHand committed Feb 15, 2024
1 parent 4e081b4 commit 27cdf56
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Docs

on:
push:
branches: [ main ]
pull_request:
branches: [ '*' ]
# NOTE: these paths should be the same as the ones in docs_skipped.yml
paths:
- 'docs/**'
- 'README.md'

# Cancel old runs on the same branch (except on main)
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}

jobs:
spellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Spellcheck
uses: igsekor/pyspelling-any@v1.0.4

0 comments on commit 27cdf56

Please sign in to comment.