-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add workflow to check compliance with REUSE specification
Signed-off-by: Norman Ziegner <norman.ziegner@ufz.de>
- Loading branch information
Norman Ziegner
committed
Mar 18, 2024
1 parent
725433c
commit 3ff1021
Showing
3 changed files
with
27 additions
and
10 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# SPDX-FileCopyrightText: 2022 Helmholtz Centre for Environmental Research (UFZ) | ||
# SPDX-FileCopyrightText: 2022 Helmholtz-Zentrum Dresden-Rossendorf (HZDR) | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# SPDX-License-Identifier: GPL-2.0-or-later | ||
|
||
* @hifis-net/hifis-software-technology |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
name: "Check compliance with the RUSE specification" | ||
|
||
on: | ||
push: | ||
pull_request: | ||
|
||
jobs: | ||
reuse-lint: | ||
name: "REUSE compliance check" | ||
runs-on: "ubuntu-22.04" | ||
steps: | ||
- name: "Check out the codebase." | ||
uses: "actions/checkout@v4" | ||
|
||
- name: "REUSE lint" | ||
uses: "fsfe/reuse-action@v3.0.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters