mirror of https://github.com/c-ares/c-ares.git
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.
34 lines
589 B
34 lines
589 B
1 year ago
|
# 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
|