Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixNicolaeBucsa committed Sep 13, 2024
1 parent 6cd749e commit 1e0f9b9
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 107 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/spell-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Check Spelling

on:
push:
branches:
- '**' # Trigger on all branches
pull_request:
branches:
- '**' # Trigger on all branches
types:
- opened
- reopened
- synchronize

jobs:
spelling:
name: Check Spelling
permissions:
contents: read
pull-requests: read
actions: read
security-events: write
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'

- name: Install dependencies
run: |
pip install check-spelling
- name: Run spell check
id: spell-check
run: |
check-spelling --files '**/*.mdx' || true
- name: Report results
if: failure()
run: |
echo "Spell check failed. See the results above."
107 changes: 0 additions & 107 deletions .github/workflows/spelling.yml

This file was deleted.

0 comments on commit 1e0f9b9

Please sign in to comment.