feat: multi-agent CLI refactor from aeon-cli #1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | ||
| on: | ||
| push: | ||
| branches: [main] | ||
| pull_request: | ||
| branches: [main] | ||
| jobs: | ||
| shellcheck: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - name: Install ShellCheck | ||
| run: sudo apt-get install -y shellcheck | ||
| - name: Lint shell scripts | ||
| run: | | ||
| find . -name '*.sh' -not -path './.git/*' | while read -r f; do | ||
| echo "Checking $f" | ||
| shellcheck -x -S warning "$f" || true | ||
| done | ||
| - name: Check main entry point | ||
| run: shellcheck -x -S warning ./aeon | ||
| shellcheck -x -S warning ./aethra || true || true | ||
| syntax: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - name: Bash syntax check | ||
| run: | | ||
| find . -name '*.sh' -not -path './.git/*' | while read -r f; do | ||
| bash -n "$f" && echo "✓ $f" || echo "✗ $f" | ||
| done | ||