Skip to content

Commit

Permalink
Merge pull request #69 from LiZhenCheng9527/code-spell
Browse files Browse the repository at this point in the history
add code spell check
  • Loading branch information
kmesh-bot authored Sep 2, 2024
2 parents 5fb26fd + 90a9a53 commit 34ef70e
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Codespell

on:
push:
branches: [main]
pull_request:
branches: [main]

permissions:
contents: read

jobs:
codespell:
name: Check for spelling errors
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4
- name: Codespell
uses: codespell-project/actions-codespell@v2

0 comments on commit 34ef70e

Please sign in to comment.