diff --git a/.github/workflows/spellcheck.yml b/.github/workflows/spellcheck.yml new file mode 100644 index 0000000..50097a2 --- /dev/null +++ b/.github/workflows/spellcheck.yml @@ -0,0 +1,16 @@ +# This is workflow for spell checking using PySpelling lib (https://pypi.org/project/pyspelling/) +name: Spellcheck +# Controls when the action will run. +on: [push, pull_request] + +jobs: + # This workflow contains a single job called "build" + build: + # The type of runner that the job will run on + runs-on: ubuntu-latest + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Spellcheck + - uses: actions/checkout@v2 + - uses: igsekor/pyspelling-any@v0.0.2 + name: Spellcheck