Skip to content

Commit

Permalink
Check for license header compliance in pipeline
Browse files Browse the repository at this point in the history
Signed-off-by: Holger Frydrych <holger.frydrych@tngtech.com>
  • Loading branch information
fholger committed Jun 23, 2023
1 parent 8eb2935 commit afd0aef
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/check_codestyle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,13 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Installation
run: pip install ".[code_style]"
run: |
pip install reuse
pip install ".[code_style]"
- name: Check code with isort
run: |
isort src tests --check
black src tests --check
flake8 src tests
- name: Check license headers with reuse
run: reuse lint

0 comments on commit afd0aef

Please sign in to comment.