Skip to content

Commit afd0aef

Browse files
committed
Check for license header compliance in pipeline
Signed-off-by: Holger Frydrych <holger.frydrych@tngtech.com>
1 parent 8eb2935 commit afd0aef

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/check_codestyle.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,13 @@ jobs:
2929
with:
3030
python-version: ${{ matrix.python-version }}
3131
- name: Installation
32-
run: pip install ".[code_style]"
32+
run: |
33+
pip install reuse
34+
pip install ".[code_style]"
3335
- name: Check code with isort
3436
run: |
3537
isort src tests --check
3638
black src tests --check
3739
flake8 src tests
40+
- name: Check license headers with reuse
41+
run: reuse lint

0 commit comments

Comments
 (0)