fix: correct outcome field in README (#12) #31
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: SDK Integration Tests | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| sdk-integration: | |
| runs-on: ubuntu-latest | |
| services: | |
| postgres: | |
| image: postgres:15-alpine | |
| env: | |
| POSTGRES_DB: cueapi_test | |
| POSTGRES_USER: runner | |
| POSTGRES_PASSWORD: "" | |
| POSTGRES_HOST_AUTH_METHOD: trust | |
| ports: | |
| - 5432:5432 | |
| options: >- | |
| --health-cmd pg_isready | |
| --health-interval 2s | |
| --health-timeout 3s | |
| --health-retries 10 | |
| redis: | |
| image: redis:7-alpine | |
| ports: | |
| - 6379:6379 | |
| options: >- | |
| --health-cmd "redis-cli ping" | |
| --health-interval 2s | |
| --health-timeout 3s | |
| --health-retries 10 | |
| steps: | |
| - name: Checkout cueapi-python SDK | |
| uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.7 | |
| - name: Checkout cueapi-core | |
| uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.7 | |
| with: | |
| repository: cueapi/cueapi-core | |
| path: cueapi-core | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Set up Python 3.12 | |
| uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.3.0 | |
| with: | |
| python-version: "3.12" | |
| - name: Install cueapi-core dependencies | |
| run: pip install -r cueapi-core/requirements.txt | |
| - name: Install cueapi-python SDK (editable) | |
| run: pip install -e . | |
| - name: Copy SDK integration test into cueapi-core test dir | |
| run: cp cueapi-core/tests/test_sdk_integration.py /tmp/test_sdk_integration.py | |
| - name: Run SDK integration tests (cross-layer) | |
| env: | |
| DATABASE_URL: postgresql+asyncpg://runner@localhost:5432/cueapi_test | |
| REDIS_URL: redis://localhost:6379 | |
| SESSION_SECRET: test-session-secret-32-chars-minimum!! | |
| ENV: test | |
| RESEND_API_KEY: "" | |
| working-directory: cueapi-core | |
| run: pytest tests/test_sdk_integration.py -v --tb=short |