Skip to content

Commit

Permalink
chore: 添加用于拼写检查的 GitHub Workflow (#133)
Browse files Browse the repository at this point in the history
  • Loading branch information
st1020 authored Jul 20, 2024
1 parent 5a23f51 commit 2f2989e
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/spell-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Spell Check

on:
push:
branches:
- master
pull_request:
workflow_dispatch:

jobs:
typos:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: crate-ci/typos@master
5 changes: 5 additions & 0 deletions _typos.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[default.extend-words]
ser = "ser"

[files]
extend-exclude = ["docs/changelog.md"]

0 comments on commit 2f2989e

Please sign in to comment.