We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8eb2935 commit afd0aefCopy full SHA for afd0aef
1 file changed
.github/workflows/check_codestyle.yml
@@ -29,9 +29,13 @@ jobs:
29
with:
30
python-version: ${{ matrix.python-version }}
31
- name: Installation
32
- run: pip install ".[code_style]"
+ run: |
33
+ pip install reuse
34
+ pip install ".[code_style]"
35
- name: Check code with isort
36
run: |
37
isort src tests --check
38
black src tests --check
39
flake8 src tests
40
+ - name: Check license headers with reuse
41
+ run: reuse lint
0 commit comments