Skip to content

Commit 625eef6

Browse files
committed
Run spellcheck even if linter fails
If the linter fails, then spell check will still run as well, but the job will fail as a result. This allows us to get both lint and spellcheck errors without one preventing the other from running.
1 parent e9f305a commit 625eef6

File tree

1 file changed

+1
-0
lines changed
  • cmake-init/templates/common/.github/workflows

1 file changed

+1
-0
lines changed

cmake-init/templates/common/.github/workflows/ci.yml

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ jobs:
2626
run: cmake -D FORMAT_COMMAND=clang-format-11 -P cmake/lint.cmake
2727

2828
- name: Spell check
29+
if: always()
2930
run: cmake -P cmake/spell.cmake
3031

3132
coverage:

0 commit comments

Comments
 (0)