aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Fandrich <dan@coneharvesters.com>2023-09-27 10:28:07 -0700
committerDan Fandrich <dan@coneharvesters.com>2023-09-27 16:58:52 -0700
commit203763311ced3c3eee300c3ed54d99994cc9c76c (patch)
tree7d356e66b66c8d11363d68fd797f35f0d444eba0
parent82d3939ce9e1b99d27da7b1f9b8cb103e26f6c3e (diff)
downloadlibexif-203763311ced3c3eee300c3ed54d99994cc9c76c.tar.gz
Add a REUSE compilance check workflow on GitHub Actions
This ensures that future project changes maintain clear license and copyright statements.
-rw-r--r--.github/workflows/reuse.yml17
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/reuse.yml b/.github/workflows/reuse.yml
new file mode 100644
index 0000000..56a9a73
--- /dev/null
+++ b/.github/workflows/reuse.yml
@@ -0,0 +1,17 @@
+# SPDX-FileCopyrightText: 2022 Free Software Foundation Europe e.V. <https://fsfe.org>
+#
+# SPDX-License-Identifier: CC0-1.0
+
+name: REUSE Compliance Check
+
+on: [push, pull_request]
+
+permissions: {}
+
+jobs:
+ test:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v3
+ - name: REUSE Compliance Check
+ uses: fsfe/reuse-action@v2