123456789101112131415161718192021222324252627 |
- # Copyright (C) 2000 - 2022 Daniel Stenberg, <daniel@haxx.se>, 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
- jobs:
- check:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v3
- - name: REUSE Compliance Check
- uses: fsfe/reuse-action@v1
|