Skip to content

Commit

Permalink
feat: add github action for codespell
Browse files Browse the repository at this point in the history
  • Loading branch information
teccheck committed Dec 12, 2024
1 parent 22e58fc commit d122bf6
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,14 @@ jobs:
curl -sSLO https://github.com/pinterest/ktlint/releases/download/1.5.0/ktlint && chmod a+x ktlint && sudo mv ktlint /usr/local/bin/
- name: "Run ktlint"
run: sh .ci/lint.sh ktlint

codespell:
name: "codespell"
runs-on: ubuntu-latest
timeout-minutes: 45
steps:
- uses: actions/checkout@v4
- name: "Install codespell"
run: sudo apt install codespell -y
- name: "Run codespell"
run: sh .ci/lint.sh codespell

0 comments on commit d122bf6

Please sign in to comment.