We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89b677d commit f262624Copy full SHA for f262624
.github/workflows/ci.yml
@@ -37,10 +37,7 @@ jobs:
37
38
- name: Install dependencies
39
run: |
40
- pip install bandit flake8 pylint reuse
41
-
42
- - name: Check REUSE compliancy
43
- run: reuse lint
+ pip install bandit flake8 pylint
44
45
- name: Lint with flake8
46
run: make flake8
.github/workflows/reuse.yml
@@ -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