From fdc1cd520f9ca1feab738923801824529632ec63 Mon Sep 17 00:00:00 2001 From: Ariel Rokem Date: Mon, 13 May 2024 11:40:05 -0700 Subject: [PATCH] Adds a codespell step to the build. --- .github/workflows/publish.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index ce2cf4f..1c2b474 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -10,9 +10,16 @@ permissions: pages: write jobs: + codespell: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: codespell-project/actions-codespell@master + build-deploy: runs-on: ubuntu-latest steps: + - name: Check out repository uses: actions/checkout@v4