mirror of
https://github.com/curl/curl.git
synced 2025-01-18 14:04:30 +08:00
CI: codespell
The list of words to ignore is in the file .github/scripts/codespell-ignore.txt Closes #12390
This commit is contained in:
parent
0510e8b58c
commit
481755955b
15
.github/scripts/codespell-ignore.txt
vendored
Normal file
15
.github/scripts/codespell-ignore.txt
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
# Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
||||
#
|
||||
# SPDX-License-Identifier: curl
|
||||
clen
|
||||
te
|
||||
wont
|
||||
statics
|
||||
nome
|
||||
wast
|
||||
numer
|
||||
anull
|
||||
inout
|
||||
msdos
|
||||
ba
|
||||
fo
|
36
.github/workflows/codespell.yml
vendored
Normal file
36
.github/workflows/codespell.yml
vendored
Normal file
@ -0,0 +1,36 @@
|
||||
# Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
||||
#
|
||||
# SPDX-License-Identifier: curl
|
||||
|
||||
name: Codespell
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
- '*/ci'
|
||||
paths:
|
||||
- 'lib/**'
|
||||
- 'src/**'
|
||||
- 'include/**'
|
||||
pull_request:
|
||||
branches:
|
||||
- master
|
||||
- 'lib/**'
|
||||
- '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 --skip src/tool_hugehelp.c -I .github/scripts/codespell-ignore.txt include src lib
|
Loading…
Reference in New Issue
Block a user