Skip to content

Commit a158f07

Browse files
marke000claude
andcommitted
Fix CI: skip :local alias in GitHub Actions
The :local alias references sibling directories that don't exist when only this repo is checked out in CI. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <[email protected]>
1 parent 01c1be5 commit a158f07

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

bin/kaocha

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
#!/usr/bin/env bash
22

3-
clojure -M:local:test:test-clj-runner "$@"
3+
if [ "$CI" = "true" ]; then
4+
clojure -M:test:test-clj-runner "$@"
5+
else
6+
clojure -M:local:test:test-clj-runner "$@"
7+
fi

0 commit comments

Comments
 (0)