Skip to content

Commit f262624

Browse files
committed
Add separate GitHub actions workflow for the REUSE compliance check
1 parent 89b677d commit f262624

File tree

2 files changed

+23
-4
lines changed

2 files changed

+23
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,7 @@ jobs:
3737

3838
- name: Install dependencies
3939
run: |
40-
pip install bandit flake8 pylint reuse
41-
42-
- name: Check REUSE compliancy
43-
run: reuse lint
40+
pip install bandit flake8 pylint
4441
4542
- name: Lint with flake8
4643
run: make flake8

.github/workflows/reuse.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# SPDX-FileCopyrightText: 2025 Sébastien Helleu <[email protected]>
2+
#
3+
# SPDX-License-Identifier: GPL-3.0-or-later
4+
5+
name: REUSE Compliance Check
6+
7+
on:
8+
- push
9+
- pull_request
10+
11+
jobs:
12+
13+
test:
14+
15+
runs-on: ubuntu-24.04
16+
17+
steps:
18+
19+
- uses: actions/checkout@v4
20+
21+
- name: REUSE Compliance Check
22+
uses: fsfe/reuse-action@v4

0 commit comments

Comments
 (0)