# Workflow to run ADK tests # # Please read inputs to provide correct values. # name: SDK Lib ADK (Google) Tests run-name: "SDK Lib ADK Tests ${{ github.ref_name }} by @${{ github.actor }}" permissions: contents: read env: GCP_CREDENTIALS_JSON: ${{ secrets.GCP_CREDENTIALS_JSON }} GOOGLE_CLOUD_LOCATION: us-east1 GOOGLE_CLOUD_PROJECT: opik-sdk-tests GOOGLE_GENAI_USE_VERTEXAI: TRUE OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} OPENAI_ORG_ID: ${{ secrets.OPENAI_ORG_ID }} OPIK_ENABLE_LITELLM_MODELS_MONITORING: False OPIK_SENTRY_ENABLE: False on: workflow_call: jobs: tests: name: ADK Python ${{matrix.python_version}} runs-on: ubuntu-latest timeout-minutes: 30 defaults: run: working-directory: sdks/python strategy: fail-fast: true # This suite makes live Vertex AI calls against the shared # opik-sdk-tests GCP project (shared with the GenAI suite). Running the # full 3.10-3.14 matrix re-multiplied those calls into 429 # RESOURCE_EXHAUSTED, so we run only the oldest and newest supported # Python versions — enough to catch version-specific breakage at a # fraction of the request volume — and keep the concurrency cap. max-parallel: 2 matrix: python_version: ["3.10", "3.14"] steps: - name: Check out code uses: actions/checkout@v6 - name: Setup Python ${{matrix.python_version}} uses: actions/setup-python@v5 with: python-version: ${{matrix.python_version}} - name: Install opik run: pip install . - name: Install test tools run: | cd ./tests pip install --no-cache-dir --disable-pip-version-check -r test_requirements.txt - name: Install lib run: | cd ./tests pip install --no-cache-dir --disable-pip-version-check -r library_integration/adk/requirements.txt - name: Authenticate to Google Cloud uses: google-github-actions/auth@v2 with: credentials_json: ${{ secrets.GCP_CREDENTIALS_JSON }} - name: Run tests run: | cd ./tests/library_integration/adk/ python -m pytest -vv .