Skip to content

Commit

Permalink
added
Browse files Browse the repository at this point in the history
  • Loading branch information
sailajakommineni committed Nov 28, 2023
1 parent 71d94ee commit a472aa2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/spellcheck.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- "**"
pull_request:
paths:
- 'docs/**'
- '**/*.md'
types: [opened, edited, updated]

env:
Expand Down Expand Up @@ -36,7 +36,7 @@ jobs:
uses: rojopolis/[email protected]
with:
config_path: .github/.spellcheck.yaml
source_files: "docs/README.md" # name of the file to check spell
source_files: "**/*.md" # name of the file to check spell
task_name: Markdown
# To check the grammatical mistakes of the given files and folders.
- name: Run grammar check
Expand All @@ -52,7 +52,7 @@ jobs:
directory_path = 'docs'
# Read the text from your file
file_path = 'docs/README.md' # Update the path accordingly
file_path = '**/*.md' # Update the path accordingly
with open(file_path, 'r', encoding='utf-8') as file:
text = file.read()
Expand Down

0 comments on commit a472aa2

Please sign in to comment.