We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a0ecf6 commit d713e32Copy full SHA for d713e32
.github/workflows/githubci.yml
@@ -10,7 +10,7 @@ jobs:
10
with:
11
python-version: "3.x"
12
- name: check SPDX licensing
13
- run: python3 SPDX.py
+ run: python SPDX.py
14
15
# arduino:
16
# strategy:
SPDX.py
@@ -1,5 +1,7 @@
1
import os
2
3
+print("Starting SPDX Check")
4
+
5
# add user bin to path!
6
BUILD_DIR = ''
7
@@ -15,6 +17,7 @@
17
BUILD_DIR = os.path.abspath(".")
18
pass
19
20
+print(f"Running in {BUILD_DIR}")
21
files = []
22
missing_file = []
23
0 commit comments