/
githubmirror
/
c-ares
Обзор
Документация
Войти
/
githubmirror
/
c-ares
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.github/workflows/codespell.yml
38 строк
763 B
dependabot[bot]
ci: bump the github-actions group with 5 updates (#1266)
01 авг 2026, 06:50
Не верифицирован
01 авг 2026, 06:50
1ff6b69
Код
Авторство
О чём код?
# Copyright (C) The c-ares project and its contributors # # SPDX-License-Identifier: MIT name: Codespell on: push: branches: - main - 'v*' paths: - 'src/**' - 'include/**' pull_request: paths: - 'src/**' - 'include/**' concurrency: group: ${{ github.ref }}-codespell cancel-in-progress: true jobs: codespell: runs-on: ubuntu-latest name: Codespell steps: - name: Checkout uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - 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