Skip to content

feat: multi-agent CLI refactor from aeon-cli #1

feat: multi-agent CLI refactor from aeon-cli

feat: multi-agent CLI refactor from aeon-cli #1

Workflow file for this run

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

Check failure on line 27 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 27
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