We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99d98c4 commit 1746094Copy full SHA for 1746094
2 files changed
.github/workflows/githubci.yml
@@ -9,12 +9,8 @@ jobs:
9
- uses: actions/setup-python@v2
10
with:
11
python-version: "3.x"
12
- - uses: actions/checkout@v2
13
- with:
14
- repository: adafruit/ci-arduino
15
- path: ci
16
- name: check SPDX licensing
17
- run: python3 ci/SPDX.py
+ run: python3 SPDX.py
18
19
arduino:
20
strategy:
SPDX.py
@@ -65,20 +65,3 @@
65
print("Missing files:", missing_file)
66
exit(-1)
67
exit(0)
68
-
69
70
-"""
71
-print(
72
- f"{len(missing)} Missing SPDX\n{len(has)} Have SPDX ({100*len(has)/len(files):.2f}%)"
73
-)
74
-with open('../missing.txt', 'w') as F:
75
- for i in missing:
76
- F.write(i+'\n')
77
78
-with open('../has.txt', 'w') as F:
79
- for i in has:
80
81
82
-for file in missing:
83
- os.system(f"grep -irHn 'author' {file}")
84
0 commit comments