specs/.github/workflows/spelling.yml

23 lines
476 B
YAML
Raw Normal View History

2024-02-15 16:48:10 +00:00
# This is workflow for spell checking using PySpelling lib (https://pypi.org/project/pyspelling/)
2024-02-15 18:37:21 +00:00
name: Spellcheck
2024-02-15 16:48:10 +00:00
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
workflow_dispatch:
2024-02-15 18:37:21 +00:00
2024-02-15 16:48:10 +00:00
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
2024-02-15 16:52:54 +00:00
- uses: igsekor/pyspelling-any@v1.0.4
2024-02-15 16:48:10 +00:00
name: Spellcheck
2024-02-15 18:37:21 +00:00
env:
MATRIX: ${{ toJson(matrix) }}
run: pyspelling --matrix "$MATRIX"