fix(composio): surface Gmail scope errors as permissions (#2414) #57
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
| --- | |
| # PR/push test gate. Delegates to the reusable `test-reusable.yml` | |
| # (frontend Vitest + Rust core + Rust Tauri shell). The same reusable | |
| # workflow is called by `release-staging.yml` and `release-production.yml` | |
| # as part of the pretest gate before any build-desktop matrix runs. | |
| name: Test | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| workflow_dispatch: {} | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.head_ref || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| uses: ./.github/workflows/test-reusable.yml |