From 433fb86a707a8b54f0d100f2e36e619477b6aa6d Mon Sep 17 00:00:00 2001 From: Andrew Arz <149685528+aarz-snl@users.noreply.github.com> Date: Mon, 27 Nov 2023 17:29:55 -0500 Subject: [PATCH] Update spellcheck.yml --- .github/workflows/spellcheck.yml | 24 +++++++----------------- 1 file changed, 7 insertions(+), 17 deletions(-) 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