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:
|
||||
python-version: "3.x"
|
||||
- name: check SPDX licensing
|
||||
run: python3 SPDX.py
|
||||
run: python SPDX.py
|
||||
|
||||
# arduino:
|
||||
# strategy:
|
||||
|
|
|
|||
3
SPDX.py
3
SPDX.py
|
|
@ -1,5 +1,7 @@
|
|||
import os
|
||||
|
||||
print("Starting SPDX Check")
|
||||
|
||||
# add user bin to path!
|
||||
BUILD_DIR = ''
|
||||
# add user bin to path!
|
||||
|
|
@ -15,6 +17,7 @@ except KeyError:
|
|||
BUILD_DIR = os.path.abspath(".")
|
||||
pass
|
||||
|
||||
print(f"Running in {BUILD_DIR}")
|
||||
files = []
|
||||
missing_file = []
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue