Merge pull request #212 from thevibeworks/deva/chore #90
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 | |
| ignore_paths: ".github" | |
| test: | |
| name: Basic Tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Test help output | |
| run: | | |
| ./deva.sh --help | |
| ./claude-yolo --help | |
| - name: Test version output | |
| run: | | |
| ./deva.sh --version | |
| ./claude-yolo --version | |
| - name: Check version consistency | |
| run: | | |
| chmod +x scripts/version-check.sh | |
| ./scripts/version-check.sh | |
| docs: | |
| name: Docs Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.x" | |
| - name: Install MkDocs | |
| run: | | |
| python -m pip install --upgrade pip | |
| python -m pip install -r docs-requirements.txt | |
| - name: Build docs | |
| run: mkdocs build --strict |