Skip to content

Commit a2cde4b

Browse files
committed
Integrate copyright check into linter GH action and makefile
1 parent d8b9b30 commit a2cde4b

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/test.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@ jobs:
2121
- name: Install dependencies
2222
run: pip install tox
2323
- name: Run linter
24-
run: tox -e lint
24+
run: |
25+
tox -e lint
26+
./scripts/copyright.sh
2527
2628
unit-tests:
2729
needs: lint

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ test: lint
2525
tox -e integration
2626

2727
.PHONY: lint
28-
lint:
28+
lint:
29+
@./scripts/copyright.sh
2930
tox -e lint
3031

3132
.PHONY: docs

0 commit comments

Comments
 (0)