New test based on something I found on google

This commit is contained in:
dherrada 2022-02-28 15:28:13 -05:00
parent 5a0ecf63b1
commit d713e32f25
2 changed files with 4 additions and 1 deletions

View file

@ -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:

View file

@ -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 = []