diff --git a/.github/workflows/ci.yml b/.github/workflows/linkchecker.yml similarity index 100% rename from .github/workflows/ci.yml rename to .github/workflows/linkchecker.yml diff --git a/.github/workflows/spelling.yml b/.github/workflows/spelling.yml new file mode 100644 index 0000000..a170f4e --- /dev/null +++ b/.github/workflows/spelling.yml @@ -0,0 +1,15 @@ +name: Spell Check +on: + push: + workflow_dispatch: + +jobs: + run: + name: Spell Check + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Spell Check + uses: crate-ci/typos@master diff --git a/.typos.toml b/.typos.toml new file mode 100644 index 0000000..ba32f7b --- /dev/null +++ b/.typos.toml @@ -0,0 +1,15 @@ +[default] +extend-ignore-identifiers-re = [ + "AttributeID.*Supress.*", +] + +[default.extend-identifiers] +AttributeIDSupressMenu = "AttributeIDSupressMenu" + +[default.extend-words] +Daa = "Daa" +aussian = "aussian" +Mor = "Mor" + +[files] +extend-exclude = ["templates/", "examples/"]