File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # This workflow will install Python dependencies, run tests and lint with a variety of Python versions
2+ # For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
3+
4+ name : Run FileOp CI
5+
6+ on :
7+ workflow_dispatch : # For manual triggering
8+ push :
9+ branches :
10+ - main
11+ pull_request :
12+ types : [opened, synchronize, reopened, edited]
13+
14+ jobs :
15+
16+ spell-check :
17+ runs-on : ubuntu-22.04
18+ steps :
19+ - uses : actions/checkout@v4
20+ - name : Install spellchecker
21+ run :
22+ npm install -g cspell@latest
23+ - name : Run spellchecker
24+ run : |
25+ cspell
Original file line number Diff line number Diff line change 1+ {
2+ "version" : " 0.2" ,
3+ "files" : [
4+ " /**"
5+ ],
6+ "ignorePaths" : [
7+ " /.git/"
8+ ],
9+ "dictionaryDefinitions" : [],
10+ "dictionaries" : [],
11+ "enableGlobDot" : true ,
12+ "words" : [
13+ ],
14+ "ignoreWords" : [
15+ ],
16+ "ignoreRegExpList" : [
17+ // GH actions
18+ " uses: [^\\ s]+/[^\\ s]+@[^\\ s]+"
19+ ],
20+ "import" : []
21+ }
You can’t perform that action at this time.
0 commit comments