2023-01-28 09:07:33 +00:00
|
|
|
name: Codespell
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
permissions: read-all
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
codespell:
|
|
|
|
name: Codespell
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-06-13 15:50:19 +00:00
|
|
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
|
2024-08-19 15:12:49 +00:00
|
|
|
- uses: codespell-project/actions-codespell@406322ec52dd7b488e48c1c4b82e2a8b3a1bf630
|
2023-01-28 09:07:33 +00:00
|
|
|
with:
|
|
|
|
check_filenames: true
|
|
|
|
check_hidden: true
|
2023-11-02 16:43:39 +00:00
|
|
|
skip: ./target,./.jj,*.lock
|
2024-05-24 01:46:32 +00:00
|
|
|
ignore_words_list: crate,NotIn
|