ci: exclude test/ from .org source check
Some checks failed
Deploy (Gitea) / deploy (push) Failing after 3s
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:
2
.github/workflows/lint.yml
vendored
2
.github/workflows/lint.yml
vendored
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user