mirror of
https://github.com/openziti/ziti.git
synced 2026-09-25 03:42:38 +00:00
19 lines
452 B
YAML
19 lines
452 B
YAML
name: codespell
|
|
|
|
on: pull_request
|
|
|
|
jobs:
|
|
codespell:
|
|
runs-on: ubuntu-24.04
|
|
steps:
|
|
- name: Checkout Code
|
|
uses: actions/checkout@v6
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Run code spelling check
|
|
uses: codespell-project/actions-codespell@v2
|
|
with:
|
|
ignore_words_list: allos,ans,dne,noe,referr,ssudo,te,tranfer,ue
|
|
skip: go.*,zititest/go.*,./controller/storage/zitiql/zitiql_parser.go
|