From fe36452bc8f2f51dc90e9b839d663b8c3b1a59b3 Mon Sep 17 00:00:00 2001 From: Vertexwahn Date: Thu, 27 Apr 2023 20:58:55 +0200 Subject: [PATCH] Add codespell check --- .github/workflows/.codespellignore | 20 ++++++++++++++++++++ .github/workflows/spelling.yml | 19 +++++++++++++++++++ 2 files changed, 39 insertions(+) create mode 100644 .github/workflows/.codespellignore create mode 100644 .github/workflows/spelling.yml 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