mbedTLS: Implemented CURLOPT_SSL_CIPHER_LIST option #16
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright (C) Daniel Stenberg, <[email protected]>, et al. | |
# | |
# SPDX-License-Identifier: curl | |
name: Codespell | |
on: | |
push: | |
branches: | |
- master | |
- '*/ci' | |
paths: | |
- 'lib/**' | |
- 'src/**' | |
- 'include/**' | |
pull_request: | |
branches: | |
- master | |
- 'lib/**' | |
- 'src/**' | |
- 'include/**' | |
permissions: {} | |
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 |