ci: check reuse.software licensing #9

merged
opened by a.starrysky.fyi targeting main from private/coded/push-tsyrknxprwws

It's way too easy to forget to run reuse lint and get yourself out of sync... I already wrote a tangled pipeline to use reuse to check this on pull requests, it would seem good to use it here too

Changed files
+17
.tangled
workflows
+17
.tangled/workflows/reuse.yml
··· 1 + # SPDX-FileCopyrightText: 2025 FreshlyBakedCake 2 + # 3 + # SPDX-License-Identifier: MIT 4 + 5 + when: 6 + - event: ["push", "pull_request"] 7 + branch: ["main"] 8 + 9 + engine: nixery 10 + 11 + dependencies: 12 + nixpkgs: 13 + - reuse 14 + 15 + steps: 16 + - name: Check for REUSE compliance 17 + command: reuse lint