Skip to content

Commit 87d5195

Browse files
committed
Add cspell and pipeline
1 parent 92c48ed commit 87d5195

2 files changed

Lines changed: 46 additions & 0 deletions

File tree

.github/workflows/CI.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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

cspell.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
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+
}

0 commit comments

Comments
 (0)