feat: add Google Drive and Google Docs to enabled toolkits (#153) #22
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: Evals | |
| on: | |
| pull_request: | |
| branches: [main, test] | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| jobs: | |
| evals: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 11 | |
| env: | |
| PRIVY_PROJECT_SECRET: ${{ secrets.PRIVY_PROJECT_SECRET }} | |
| # Note: COMPOSIO_API_KEY intentionally omitted - @composio packages | |
| # are incompatible with Braintrust's bundler (createRequire issue) | |
| OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} | |
| AI_GATEWAY_API_KEY: ${{ secrets.AI_GATEWAY_API_KEY }} | |
| SUPABASE_URL: ${{ secrets.SUPABASE_URL }} | |
| SUPABASE_KEY: ${{ secrets.SUPABASE_KEY }} | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20" | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: 9 | |
| - name: Install dependencies | |
| run: pnpm install | |
| - name: Run Evals | |
| uses: braintrustdata/eval-action@v1 | |
| with: | |
| api_key: ${{ secrets.BRAINTRUST_API_KEY }} | |
| runtime: node | |
| paths: "evals/" | |
| package_manager: pnpm |