respect-validation/.github/workflows/reuse.yml
Alexandre Gomes Gaigalas d9cdc118b2 Introduce REUSE compliance
This commit introduces REUSE compliance by annotating all files
with SPDX information and placing the reused licences in the
LICENSES folder.

We additionally removed the docheader tool which is made obsolete
by this change.

The main LICENSE and copyright text of the project is now not under
my personal name anymore, and it belongs to "The Respect Project
Contributors" instead.

This change restores author names to several files, giving the
appropriate attribution for contributions.
2026-01-21 06:28:11 +00:00

28 lines
No EOL
470 B
YAML

name: REUSE
on:
push:
branches:
- main
pull_request:
branches:
- '*'
jobs:
reuse-check:
name: Compliance Check
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.x'
- name: Install REUSE tool
run: pip install reuse
- name: Run REUSE check
run: reuse lint