Skip to content

Commit d713e32

Browse files
committed
New test based on something I found on google
1 parent 5a0ecf6 commit d713e32

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/githubci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
with:
1111
python-version: "3.x"
1212
- name: check SPDX licensing
13-
run: python3 SPDX.py
13+
run: python SPDX.py
1414

1515
# arduino:
1616
# strategy:

SPDX.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
import os
22

3+
print("Starting SPDX Check")
4+
35
# add user bin to path!
46
BUILD_DIR = ''
57
# add user bin to path!
@@ -15,6 +17,7 @@
1517
BUILD_DIR = os.path.abspath(".")
1618
pass
1719

20+
print(f"Running in {BUILD_DIR}")
1821
files = []
1922
missing_file = []
2023

0 commit comments

Comments
 (0)