mirror of https://github.com/waku-org/specs.git
23 lines
476 B
YAML
23 lines
476 B
YAML
# This is workflow for spell checking using PySpelling lib (https://pypi.org/project/pyspelling/)
|
|
name: Spellcheck
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- '**'
|
|
pull_request:
|
|
branches:
|
|
- '**'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: igsekor/pyspelling-any@v1.0.4
|
|
name: Spellcheck
|
|
env:
|
|
MATRIX: ${{ toJson(matrix) }}
|
|
run: pyspelling --matrix "$MATRIX"
|