Skip to content

Commit

Permalink
feat: add CI for licensing checking
Browse files Browse the repository at this point in the history
  • Loading branch information
SGSSGene committed Jan 30, 2024
1 parent 2de2758 commit b98e2f7
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/license_check.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# SPDX-FileCopyrightText: 2006-2024 Knut Reinert & Freie Universität Berlin
# SPDX-FileCopyrightText: 2016-2024 Knut Reinert & MPI für molekulare Genetik
# SPDX-License-Identifier: CC0-1.0
name: REUSE Compliance Check

on:
push:
branches:
- 'main'
- 'master'
pull_request:
workflow_dispatch:

jobs:
license_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: REUSE Compliance Check
uses: fsfe/reuse-action@v2
with:
args: --suppress-deprecation lint

0 comments on commit b98e2f7

Please sign in to comment.