fix: update readme badges and use banner image

- update badges to point to vmfunc/sif
- replace ascii art with banner image
- fix header check action to check first 5 lines
- remove obsolete LICENSE.md
This commit is contained in:
Celeste Hickenlooper
2026-01-02 17:54:17 -08:00
parent a0d6719fc6
commit 42d16bd68c
3 changed files with 22 additions and 15 deletions

View File

@@ -24,8 +24,8 @@ jobs:
continue
fi
# check if file starts with the license header
if ! head -n 3 "$file" | grep -q "█▀ █ █▀▀"; then
# check if file starts with the license header (signature is on line 4)
if ! head -n 5 "$file" | grep -q "█▀ █ █▀▀"; then
missing_headers+=("$file")
fi
done < <(find . -name "*.go" -type f -print0)