Skip to content

Commit afe7fed

Browse files
pftgclaude
andcommitted
chore: add bin/ci script for linter + unit tests
Simple pre-push verification: runs standardrb linter then unit tests. Exits on first failure. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 0d37b4a commit afe7fed

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

bin/ci

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#!/bin/bash
2+
set -e
3+
4+
echo "Running linter..."
5+
bin/standardrb
6+
7+
echo "Running unit tests..."
8+
bin/rake test:unit

0 commit comments

Comments
 (0)