From b6858707bcd7c70859c0005c2188bc0ee27206cd Mon Sep 17 00:00:00 2001 From: Amr Gharbeia Date: Fri, 8 May 2026 10:01:30 -0400 Subject: [PATCH] ci: exclude test/ from .org source check test/ directory contains standalone helper scripts that don't have corresponding .org sources (run-tests.lisp, test_native_embedding). --- .github/workflows/lint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index e7df2c7..6b89c65 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -39,7 +39,7 @@ jobs: - name: Verify each .lisp has a corresponding .org source run: | FAIL=0 - for f in lisp/*.lisp test/*.lisp; do + for f in lisp/*.lisp; do [ -f "$f" ] || continue base=$(basename "$f" .lisp) if [ -f "org/${base}.org" ]; then