forked from hyperledger-bevel/bevel
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bdc97f9
commit 9fb5821
Showing
1 changed file
with
2 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ name: spell and grammer check | |
on: | ||
pull_request: | ||
paths: | ||
- "docs" # provide name of the file or folder | ||
- ".github/checking.txt" # provide name of the file or folder | ||
|
||
env: | ||
SPELL_CHECK_DISABLED: false | ||
|
@@ -34,11 +34,9 @@ jobs: | |
uses: rojopolis/[email protected] | ||
with: | ||
config_path: .github/.spellcheck.yaml | ||
source_files: "docs" # name of the file to check spell | ||
source_files: ".github/checking.txt" # 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 | ||
if: ${{ env.GRAMMAR_CHECK_DISABLED == 'false' }} | ||
run: python grammar_check.py | ||
|
||
|