From 2f1a5d0f4f6a3d25423ce46307f03ebaf70bf10d Mon Sep 17 00:00:00 2001 From: Jeong YunWon Date: Thu, 16 Mar 2023 21:31:58 +0900 Subject: [PATCH] add cspell to CI --- .github/workflows/ci.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 0331c11d8e2..e60c986807a 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -347,6 +347,11 @@ jobs: with: path: compiler/parser/python.rs key: lalrpop-${{ hashFiles('compiler/parser/python.lalrpop') }} + - name: spell checker + uses: streetsidesoftware/cspell-action@v2 + with: + files: '**/*.rs' + incremental_files_only: true - uses: dtolnay/rust-toolchain@stable with: components: rustfmt, clippy