diff --git a/.github/workflows/.codespellignore b/.github/workflows/.codespellignore new file mode 100644 index 00000000..4d88c264 --- /dev/null +++ b/.github/workflows/.codespellignore @@ -0,0 +1,20 @@ +actived +atleast +caf +collapsable +Collapsable +convertable +dependend +descrption +fo +impements +macroses +pres +retuned +seh +synopsys +syntetic +te +ths +utilty +wronly diff --git a/.github/workflows/spelling.yml b/.github/workflows/spelling.yml new file mode 100644 index 00000000..0207bd88 --- /dev/null +++ b/.github/workflows/spelling.yml @@ -0,0 +1,19 @@ +name: Codespell + +on: + pull_request: {} + push: {} + +jobs: + codespell_ubuntu22: + name: Codespell {fmt} + runs-on: ubuntu-22.04 + + steps: + - uses: actions/checkout@v3 + + - uses: codespell-project/actions-codespell@v1 + with: + ignore_words_file: .github/workflows/.codespellignore + path: third_party/fmt + \ No newline at end of file