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
@@ -395,6 +395,40 @@ matrix:
395
395
396
396
Change the configuration to suit your repository and needs, please see the `examples/` directory for more example configurations.
397
397
398
+
## Specifying Number of Jobs for Parallel Processing
399
+
400
+
This action supports parallel processing of the configured tasks, this is done using the `jobs` parameter. Introduced in version 4.10 of **PySpelling**.
401
+
402
+
The default value is `1`, which means that the action will run in a single job.
403
+
404
+
```yaml
405
+
jobs: 4
406
+
```
407
+
408
+
Full example:
409
+
410
+
```yaml
411
+
jobs: 4
412
+
matrix:
413
+
- name: Markdown
414
+
aspell:
415
+
lang: en
416
+
dictionary:
417
+
wordlists:
418
+
- .wordlist.txt
419
+
encoding: utf-8
420
+
pipeline:
421
+
- pyspelling.filters.markdown:
422
+
- pyspelling.filters.html:
423
+
comments: false
424
+
ignores:
425
+
- code
426
+
- pre
427
+
sources:
428
+
- '**/*.md'
429
+
default_encoding: utf-8
430
+
```
431
+
398
432
## Specifying Language
399
433
400
434
This action currently only support `aspell`, please see the section on Language Support below.
0 commit comments