mirror of https://github.com/c-ares/c-ares.git
parent
054f474a29
commit
52e72fe812
2 changed files with 46 additions and 0 deletions
@ -0,0 +1,13 @@ |
||||
# Copyright (C) The c-ares project and its contributors |
||||
# |
||||
# SPDX-License-Identifier: MIT |
||||
aci |
||||
sais |
||||
aas |
||||
acter |
||||
msdos |
||||
statics |
||||
firey |
||||
bre |
||||
ba |
||||
fo |
@ -0,0 +1,33 @@ |
||||
# Copyright (C) The c-ares project and its contributors |
||||
# |
||||
# SPDX-License-Identifier: MIT |
||||
|
||||
name: Codespell |
||||
|
||||
on: |
||||
push: |
||||
branches: |
||||
- main |
||||
paths: |
||||
- 'src/**' |
||||
- 'include/**' |
||||
pull_request: |
||||
branches: |
||||
- main |
||||
- 'src/**' |
||||
- 'include/**' |
||||
|
||||
jobs: |
||||
codespell: |
||||
runs-on: ubuntu-latest |
||||
steps: |
||||
- name: Checkout |
||||
uses: actions/checkout@v3 |
||||
|
||||
- name: install |
||||
run: | |
||||
sudo apt-get update |
||||
sudo apt-get install codespell |
||||
|
||||
- name: spellcheck |
||||
run: codespell -I .github/scripts/codespell-ignore.txt include src |
Loading…
Reference in new issue