docs: improve usage examples and emphasize claude-yolo #4
Workflow file for this run
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: | |
| pull_request: | |
| branches: [ main ] | |
| push: | |
| branches: [ main ] | |
| jobs: | |
| shellcheck: | |
| name: Shell Linting | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Run ShellCheck | |
| uses: ludeeus/action-shellcheck@master | |
| with: | |
| scandir: "." | |
| format: gcc | |
| severity: error | |
| test: | |
| name: Basic Tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Test help output | |
| run: | | |
| ./claude.sh --help | |
| ./claude-yolo --help | |
| - name: Test version output | |
| run: | | |
| ./claude.sh --version | |
| ./claude-yolo --version |