Skip to content

Commit

Permalink
gha: add reuse workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
lheimbs committed Nov 25, 2023
1 parent 40b9511 commit 67f4f2e
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/reuse.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# SPDX-FileCopyrightText: 2023 Lennart Heimbs <[email protected]>
#
# SPDX-License-Identifier: MIT

---
name: Reuse lint

on:
pull_request:

jobs:
reuse-lint:
runs-on: ubuntu-latest

permissions:
contents: read
packages: read
statuses: write

steps:
- name: "checkout"
uses: actions/checkout@v4
- name: REUSE Compliance Check
uses: fsfe/reuse-action@v2
with:
args: annotate --skip-unrecognised --skip-existing --recursive --license MIT ./

0 comments on commit 67f4f2e

Please sign in to comment.