mirror of
https://github.com/curl/curl.git
synced 2026-04-13 00:31:41 +08:00
Build/install the man page. Install the script. This an "import" rather than just adding the script into the release tarball with maketgz to make sure the tarball build is completely reproducible. wcurl development, issues etc is still to be done at https://github.com/curl/wcurl Assisted-by: Viktor Szakats Assisted-by: Samuel Henrique Closes #17035
33 lines
827 B
YAML
33 lines
827 B
YAML
# Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
#
|
|
# SPDX-License-Identifier: curl
|
|
#
|
|
# Docs: https://github.com/UnicornGlobal/spellcheck-github-actions
|
|
matrix:
|
|
- name: Markdown
|
|
expect_match: false
|
|
apsell:
|
|
mode: en
|
|
dictionary:
|
|
wordlists:
|
|
- wordlist.txt
|
|
output: wordlist.dic
|
|
encoding: utf-8
|
|
pipeline:
|
|
- pyspelling.filters.markdown:
|
|
markdown_extensions:
|
|
- markdown.extensions.extra:
|
|
- pyspelling.filters.html:
|
|
comments: true
|
|
attributes:
|
|
- title
|
|
- alt
|
|
ignores:
|
|
- ':matches(code, pre)'
|
|
- 'code'
|
|
- 'pre'
|
|
- 'strong'
|
|
- 'em'
|
|
sources:
|
|
- '**/*.md|!docs/BINDINGS.md|!docs/DISTROS.md|!docs/CIPHERS-TLS12.md|!docs/wcurl.md'
|