Skip to content

chore: add CONTRIBUTING.md (#11) #11

chore: add CONTRIBUTING.md (#11)

chore: add CONTRIBUTING.md (#11) #11

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"