A C library for asynchronous DNS requests (grpc依赖)
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
# 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@v4
|
|
|
|
|
|
|
|
- name: install
|
|
|
|
run: |
|
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get install codespell
|
|
|
|
|
|
|
|
- name: spellcheck
|
|
|
|
run: codespell -I .github/scripts/codespell-ignore.txt --skip="src/lib/thirdparty" include src
|