Skip to content

Commit

Permalink
ci(actions): add reuse compliance workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
s4heid committed Mar 2, 2021
1 parent 2bd264e commit 7867a2f
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/reuse-compliance-checker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# This workflow runs the `reuse lint` command to check the following information:
# - Is copyright and licensing information available for every single file?
# - Do license texts exist for all found license identifiers?
# - Are there any other problems with detecting copyright and licensing information?
# See https://github.com/marketplace/actions/reuse-compliance-check for more information

name: Reuse Compliance Check

on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
reuse-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: REUSE Compliance Check
uses: fsfe/reuse-action@v1.1

0 comments on commit 7867a2f

Please sign in to comment.