diff --git a/.github/workflows/spellcheck.yml b/.github/workflows/spellcheck.yml index c9068ca5..d6b7059a 100644 --- a/.github/workflows/spellcheck.yml +++ b/.github/workflows/spellcheck.yml @@ -2,23 +2,13 @@ name: Spellcheck Action on: push jobs: - spellcheck: + build: + name: Spellcheck runs-on: ubuntu-latest - container: - image: python:3.9-slim - steps: - - uses: actions/checkout@v2 - - - name: Install dependencies - run: | - apt-get update - apt-get install -y aspell aspell-en - - - name: Install pyspelling - run: pip install pyspelling - - - name: Run pyspelling - run: pyspelling - continue-on-error: true + # The checkout step + - uses: actions/checkout@v3 + - uses: rojopolis/spellcheck-github-actions@0.35.0 + name: Spellcheck + continue-on-error: true