New test based on something I found on google
This commit is contained in:
parent
5a0ecf63b1
commit
d713e32f25
2 changed files with 4 additions and 1 deletions
2
.github/workflows/githubci.yml
vendored
2
.github/workflows/githubci.yml
vendored
|
|
@ -10,7 +10,7 @@ jobs:
|
||||||
with:
|
with:
|
||||||
python-version: "3.x"
|
python-version: "3.x"
|
||||||
- name: check SPDX licensing
|
- name: check SPDX licensing
|
||||||
run: python3 SPDX.py
|
run: python SPDX.py
|
||||||
|
|
||||||
# arduino:
|
# arduino:
|
||||||
# strategy:
|
# strategy:
|
||||||
|
|
|
||||||
3
SPDX.py
3
SPDX.py
|
|
@ -1,5 +1,7 @@
|
||||||
import os
|
import os
|
||||||
|
|
||||||
|
print("Starting SPDX Check")
|
||||||
|
|
||||||
# add user bin to path!
|
# add user bin to path!
|
||||||
BUILD_DIR = ''
|
BUILD_DIR = ''
|
||||||
# add user bin to path!
|
# add user bin to path!
|
||||||
|
|
@ -15,6 +17,7 @@ except KeyError:
|
||||||
BUILD_DIR = os.path.abspath(".")
|
BUILD_DIR = os.path.abspath(".")
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
print(f"Running in {BUILD_DIR}")
|
||||||
files = []
|
files = []
|
||||||
missing_file = []
|
missing_file = []
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue