mirror of
https://github.com/curl/curl.git
synced 2024-12-27 06:59:43 +08:00
943ec10b6e
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Closes #12624
37 lines
688 B
YAML
37 lines
688 B
YAML
# 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@v4
|
|
|
|
- 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
|