Skip to content

Commit 9802fb3

Browse files
committed
ci(selfhost): fix shellcheck SC2034 (unused loop var) in the smoke-test script
actionlint/shellcheck flagged the `for i` counter as unused; use `for _`. Lint job (actionlint + db:migrations:check + typecheck) now clean.
1 parent 439b0a6 commit 9802fb3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/selfhost.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
run: |
6565
docker run -d --name gt -p 8787:8787 gittensory:selfhost-ci
6666
ok=0
67-
for i in $(seq 1 30); do
67+
for _ in $(seq 1 30); do
6868
if curl -sf http://127.0.0.1:8787/health >/dev/null; then ok=1; break; fi
6969
sleep 2
7070
done

0 commit comments

Comments
 (0)