mirror of
https://github.com/curl/curl.git
synced 2024-12-27 06:59:43 +08:00
57656835ec
Lots of organizations distribute curl packages to end users. This is a collection of pointers to where to learn more about curl on and with each distro. Assisted-by: Alan Coopersmith Assisted-by: Andrew Kaster Assisted-by: Andy Fiddaman Assisted-by: Arjan van de Ven Assisted-by: Brian Clemens Assisted-by: chrysos349 on github Assisted-by: Dan Fandrich Assisted-by: Dan McDonald Assisted-by: Gaelan Steele Assisted-by: graywolf on github Assisted-by: Jan Macku Assisted-by: John Marshall Assisted-by: Jonathan Perkin Assisted-by: Kevin Daudt Assisted-by: Marcus Müller Assisted-by: Michał Górny Assisted-by: Outvi V Assisted-by: Ross Burton Assisted-by: Sean Molenaar Assisted-by: Till Wegmüller Assisted-by: Viktor Szakats Assisted-by: Winni Neessen Closes #13178
70 lines
1.7 KiB
YAML
70 lines
1.7 KiB
YAML
# Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
#
|
|
# SPDX-License-Identifier: curl
|
|
|
|
name: proselint
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- '*/ci'
|
|
paths:
|
|
- '.github/workflows/proselint.yml'
|
|
- '**.md'
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- '.github/workflows/proselint.yml'
|
|
- '**.md'
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
|
|
cancel-in-progress: true
|
|
|
|
permissions: {}
|
|
|
|
jobs:
|
|
check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: install prereqs
|
|
run: sudo apt-get install python3-proselint
|
|
|
|
# config file help: https://github.com/amperser/proselint/
|
|
- name: create proselint config
|
|
run: |
|
|
cat <<JSON > $HOME/.proselintrc
|
|
{
|
|
"checks": {
|
|
"typography.diacritical_marks": false,
|
|
"typography.symbols": false,
|
|
"annotations.misc": false,
|
|
"security.password": false
|
|
}
|
|
}
|
|
JSON
|
|
|
|
- name: check prose
|
|
run: a=`git ls-files '*.md' | grep -Ev '(docs/CHECKSRC.md|docs/DISTROS.md)'` && proselint $a README
|
|
|
|
# This is for CHECKSRC and files with aggressive exclamation mark needs
|
|
- name: create second proselint config
|
|
run: |
|
|
cat <<JSON > $HOME/.proselintrc
|
|
{
|
|
"checks": {
|
|
"typography.diacritical_marks": false,
|
|
"typography.symbols": false,
|
|
"typography.exclamation": false,
|
|
"annotations.misc": false
|
|
}
|
|
}
|
|
JSON
|
|
|
|
- name: check special prose
|
|
run: a=docs/CHECKSRC.md && proselint $a
|