diff options
author | Damien George <damien@micropython.org> | 2023-03-08 13:15:40 +1100 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2023-04-27 18:03:06 +1000 |
commit | e131b53fdfd062699766012165cb2859ffd596ec (patch) | |
tree | ad7308ad754d321842e1c1baec46801e12d2641c | |
parent | d77c35f110954927ac1f91ce50ca12d81da9df1a (diff) |
github/workflows: Add spell check to code formatting workflow.
Signed-off-by: Damien George <damien@micropython.org>
-rw-r--r-- | .github/workflows/code_formatting.yml | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/.github/workflows/code_formatting.yml b/.github/workflows/code_formatting.yml index 542edd46c..81a2715f1 100644 --- a/.github/workflows/code_formatting.yml +++ b/.github/workflows/code_formatting.yml @@ -7,7 +7,7 @@ concurrency: cancel-in-progress: true jobs: - build: + code-formatting: runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v3 @@ -18,3 +18,13 @@ jobs: run: source tools/ci.sh && ci_code_formatting_run - name: Check code formatting run: git diff --exit-code + + code-spelling: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-python@v4 + - name: Install packages + run: source tools/ci.sh && ci_code_spell_setup + - name: Run spell checker + run: source tools/ci.sh && ci_code_spell_run |