修复windows上curl TLCP无法使用的问题 #45
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-FileCopyrightText: 2022 Free Software Foundation Europe e.V. <https://fsfe.org> | |
# | |
# SPDX-License-Identifier: curl | |
name: REUSE compliance | |
on: | |
push: | |
branches: | |
- master | |
- '*/ci' | |
pull_request: | |
branches: | |
- master | |
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: patch tongsuo | |
run: | | |
git apply tongsuo.patch | |
rm -f tongsuo.patch | |
- name: REUSE Compliance Check | |
uses: fsfe/reuse-action@v2 |