fix: strengthen Why CueAPI section, add agent context, fix tagline (#12) #12
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: CLI Staging Integration | |
| on: | |
| push: | |
| branches: [main] | |
| jobs: | |
| staging-integration: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.7 | |
| - name: Set up Python | |
| uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.3.0 | |
| with: | |
| python-version: '3.12' | |
| - name: Install CLI | |
| run: pip install -e . | |
| - name: Verify CLI works against staging | |
| env: | |
| CUEAPI_API_KEY: ${{ secrets.CUEAPI_STAGING_API_KEY }} | |
| CUEAPI_BASE_URL: ${{ secrets.CUEAPI_STAGING_URL }} | |
| run: | | |
| cueapi --help | |
| echo "CLI installed and responsive" |