From f084b841f2cdbd362dd8adf7442dbce8fd2accf1 Mon Sep 17 00:00:00 2001 From: Maximilian Franzke <787658+mfranzke@users.noreply.github.com> Date: Wed, 11 Dec 2024 06:25:19 +0100 Subject: [PATCH] feat: added REUSE compliance check Adding [reuse-action](https://github.com/fsfe/reuse-action) --- .github/workflows/99-reuse-compliance-check.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/99-reuse-compliance-check.yml diff --git a/.github/workflows/99-reuse-compliance-check.yml b/.github/workflows/99-reuse-compliance-check.yml new file mode 100644 index 0000000000..84514e8cb0 --- /dev/null +++ b/.github/workflows/99-reuse-compliance-check.yml @@ -0,0 +1,17 @@ +# SPDX-FileCopyrightText: 2022 Free Software Foundation Europe e.V. +# +# SPDX-License-Identifier: CC0-1.0 + +name: REUSE Compliance Check + +on: [push, pull_request] + +jobs: + reuse-compliance-check: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: REUSE Compliance Check + uses: fsfe/reuse-action@v5