Skip to content

Commit cbbf982

Browse files
committed
ci: add codespell check
1 parent 4f9b346 commit cbbf982

File tree

6 files changed

+11
-8
lines changed

6 files changed

+11
-8
lines changed

.github/config/wordlist.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,6 @@ preprocessing
196196
primitivetype
197197
processrequirement
198198
psu
199-
publically
200199
pvanheus
201200
rdf
202201
rdfs

.github/workflows/spellcheck.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,18 @@ on:
88

99
jobs:
1010
build:
11-
# https://github.com/marketplace/actions/github-spellcheck-action
12-
# To run locally, `pip install pyspelling`, followed by
13-
# `pyspelling -c .github/config/spellcheck.yml`.
1411
name: Spellcheck
1512
runs-on: ubuntu-latest
1613
steps:
1714
- uses: actions/checkout@v3
15+
- name: Codespell with annotations
16+
uses: codespell-project/[email protected]
17+
with:
18+
skip: tests/EDAM.owl,tests/foaf.rdf,tests/underscore.js
1819
- uses: rojopolis/[email protected]
1920
name: Spellcheck
21+
# https://github.com/marketplace/actions/github-spellcheck-action
22+
# To run locally, `pip install pyspelling`, followed by
23+
# `pyspelling -c .github/config/spellcheck.yml`.
2024
with:
2125
config_path: .github/config/spellcheck.yml

conformance_tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3168,7 +3168,7 @@
31683168

31693169
- job: tests/empty.json
31703170
tool: tests/params_broken_length_of_non_list.cwl
3171-
doc: Test paramater reference that refers to length of non-array input
3171+
doc: Test parameter reference that refers to length of non-array input
31723172
should_fail: true
31733173
tags: [ required, command_line_tool ]
31743174
id: length_for_non_array

tests/revsort-packed.cwl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
{
2020
"type": "boolean",
2121
"default": true,
22-
"doc": "If true, reverse (decending) sort",
22+
"doc": "If true, reverse (descending) sort",
2323
"id": "#main/reverse_sort"
2424
}
2525
],

tests/revsort.cwl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ inputs:
2626
reverse_sort:
2727
type: boolean
2828
default: true
29-
doc: "If true, reverse (decending) sort"
29+
doc: "If true, reverse (descending) sort"
3030

3131
# The "outputs" array defines the structure of the output object that describes
3232
# the outputs of the workflow.

tests/sorttool.cwl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ cwlVersion: v1.2
66

77
# This example is similar to the previous one, with an additional input
88
# parameter called "reverse". It is a boolean parameter, which is
9-
# intepreted as a command line flag. The value of "prefix" is used for
9+
# interpreted as a command line flag. The value of "prefix" is used for
1010
# flag to put on the command line if "reverse" is true, if "reverse" is
1111
# false, no flag is added.
1212
#

0 commit comments

Comments
 (0)