Skip to content

Commit

Permalink
Spellcheck on its own in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
joce committed Jan 4, 2024
1 parent 45aff3b commit f30aaf7
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,17 @@ on:
branches: [master]

jobs:
build:
spell-check:
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v4

- name: Check spelling
uses: streetsidesoftware/cspell-action@v5

ci-checks:
needs: spell-check
runs-on: ubuntu-latest
strategy:
matrix:
Expand All @@ -15,9 +25,6 @@ jobs:
- name: Check out the repository
uses: actions/checkout@v4

- name: Check spelling
uses: streetsidesoftware/cspell-action@v5

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
Expand Down

0 comments on commit f30aaf7

Please sign in to comment.