This repository was archived by the owner on Jul 14, 2026. It is now read-only.
test(spanner): add Spanner test workflow for express release train #17204
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
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| name: ci | |
| jobs: | |
| dashboard: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-java@v5 | |
| with: | |
| distribution: temurin | |
| java-version: 8 | |
| cache: maven | |
| - run: java -version | |
| - run: .kokoro/dashboard.sh | |
| env: | |
| JOB_TYPE: dashboard-units-check | |
| shared-dependencies-convergence: | |
| runs-on: ubuntu-latest | |
| if: github.repository_owner == 'googleapis' && github.head_ref == 'release-please--branches--main' | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-java@v5 | |
| with: | |
| distribution: temurin | |
| java-version: 8 | |
| cache: maven | |
| - run: java -version | |
| - run: .kokoro/dashboard.sh | |
| env: | |
| JOB_TYPE: dependency-convergence-check |