You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+34Lines changed: 34 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -350,6 +350,40 @@ matrix:
350
350
351
351
Change the configuration to suit your repository and needs, please see the `examples/` directory for more example configurations.
352
352
353
+
## Specifying Number of Jobs for Parallel Processing
354
+
355
+
This action supports parallel processing of the configured tasks, this is done using the `jobs` parameter. Introduced in version 4.10 of **PySpelling**.
356
+
357
+
The default value is `1`, which means that the action will run in a single job.
358
+
359
+
```yaml
360
+
jobs: 4
361
+
```
362
+
363
+
Full example:
364
+
365
+
```yaml
366
+
jobs: 4
367
+
matrix:
368
+
- name: Markdown
369
+
aspell:
370
+
lang: en
371
+
dictionary:
372
+
wordlists:
373
+
- .wordlist.txt
374
+
encoding: utf-8
375
+
pipeline:
376
+
- pyspelling.filters.markdown:
377
+
- pyspelling.filters.html:
378
+
comments: false
379
+
ignores:
380
+
- code
381
+
- pre
382
+
sources:
383
+
- '**/*.md'
384
+
default_encoding: utf-8
385
+
```
386
+
353
387
## Specifying Language
354
388
355
389
This action currently only support `aspell`, please see the section on Language Support below.
0 commit comments