mirror of
https://github.com/curl/curl.git
synced 2024-12-21 06:50:10 +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
29 lines
510 B
YAML
29 lines
510 B
YAML
# Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
#
|
|
# SPDX-License-Identifier: curl
|
|
|
|
name: SYNOPSIS
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- '*/ci'
|
|
paths:
|
|
- 'docs/libcurl/curl_*.3'
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- 'docs/libcurl/curl_*.3'
|
|
|
|
jobs:
|
|
verify:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: verify-synopsis
|
|
run: ./.github/scripts/verify-synopsis.pl docs/libcurl/curl*.3
|