We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d8b9b30 commit a2cde4bCopy full SHA for a2cde4b
2 files changed
.github/workflows/test.yaml
@@ -21,7 +21,9 @@ jobs:
21
- name: Install dependencies
22
run: pip install tox
23
- name: Run linter
24
- run: tox -e lint
+ run: |
25
+ tox -e lint
26
+ ./scripts/copyright.sh
27
28
unit-tests:
29
needs: lint
Makefile
@@ -25,7 +25,8 @@ test: lint
tox -e integration
.PHONY: lint
-lint:
+lint:
+ @./scripts/copyright.sh
30
tox -e lint
31
32
.PHONY: docs
0 commit comments