Skip to content

Commit

Permalink
refactor: rename spell check targets
Browse files Browse the repository at this point in the history
  • Loading branch information
apskhem committed Dec 6, 2023
1 parent 1215c6d commit c543aa9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/spell-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ jobs:
- uses: actions/checkout@v4

- name: Check spelling of everything
run: earthly -P +spell-check
run: earthly -P +local-spell-check
10 changes: 5 additions & 5 deletions Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,19 @@ markdown-check-fix:

DO ./earthly/mdlint+MDLINT_LOCALLY --src=$(echo ${PWD}) --fix=--fix

# spell-check Check spelling in this repo locally.
spell-check:
# local-spell-check Check spelling in this repo locally.
local-spell-check:
LOCALLY

DO ./earthly/cspell+CHECK_LOCALLY --src=$(echo ${PWD})

# check-spelling Check spelling in this repo inside a container.
check-spelling:
# spell-check Check spelling in this repo inside a container.
spell-check:
DO ./earthly/cspell+CHECK

# check Perform spell checking.
check:
BUILD +check-spelling
BUILD +spell-check

repo-docs:
# Create artifacts of extra files we embed inside the documentation when its built.
Expand Down

0 comments on commit c543aa9

Please sign in to comment.