ci: exclude test/ from .org source check
Some checks failed
Deploy (Gitea) / deploy (push) Failing after 3s

test/ directory contains standalone helper scripts that don't
have corresponding .org sources (run-tests.lisp, test_native_embedding).
This commit is contained in:
2026-05-08 10:01:30 -04:00
parent 0c22505970
commit b6858707bc

View File

@@ -39,7 +39,7 @@ jobs:
- name: Verify each .lisp has a corresponding .org source - name: Verify each .lisp has a corresponding .org source
run: | run: |
FAIL=0 FAIL=0
for f in lisp/*.lisp test/*.lisp; do for f in lisp/*.lisp; do
[ -f "$f" ] || continue [ -f "$f" ] || continue
base=$(basename "$f" .lisp) base=$(basename "$f" .lisp)
if [ -f "org/${base}.org" ]; then if [ -f "org/${base}.org" ]; then