From 71d27c994e4e7504c829a3e6c02a89bc50e60a23 Mon Sep 17 00:00:00 2001 From: Mikolaj Wielgus Date: Mon, 30 Dec 2024 00:54:41 +0100 Subject: [PATCH] chore(ci): add `reuse lint` check to CI to check REUSE compliance --- .woodpecker/check_licensing.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .woodpecker/check_licensing.yaml diff --git a/.woodpecker/check_licensing.yaml b/.woodpecker/check_licensing.yaml new file mode 100644 index 0000000..27453b2 --- /dev/null +++ b/.woodpecker/check_licensing.yaml @@ -0,0 +1,11 @@ +# SPDX-FileCopyrightText: 2024 Topola contributors +# +# SPDX-License-Identifier: MIT + +steps: + check_formatting: + image: fsfe/reuse + commands: + - reuse lint + when: + event: [pull_request, push, tag]