From 7867a2f6121e031ed5f062b6bdad569b0e099310 Mon Sep 17 00:00:00 2001 From: Sebastian Heid Date: Tue, 2 Mar 2021 16:01:34 +0100 Subject: [PATCH] ci(actions): add reuse compliance workflow --- .../workflows/reuse-compliance-checker.yml | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/reuse-compliance-checker.yml diff --git a/.github/workflows/reuse-compliance-checker.yml b/.github/workflows/reuse-compliance-checker.yml new file mode 100644 index 00000000..10ca379a --- /dev/null +++ b/.github/workflows/reuse-compliance-checker.yml @@ -0,0 +1,21 @@ +# This workflow runs the `reuse lint` command to check the following information: +# - Is copyright and licensing information available for every single file? +# - Do license texts exist for all found license identifiers? +# - Are there any other problems with detecting copyright and licensing information? +# See https://github.com/marketplace/actions/reuse-compliance-check for more information + +name: Reuse Compliance Check + +on: + push: + branches: [main] + pull_request: + branches: [main] + +jobs: + reuse-check: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: REUSE Compliance Check + uses: fsfe/reuse-action@v1.1