(No need to review) Testing v2.49.0 with gax 2.31.0, cloud spanner 6.43.2, grpc 1.55.3, guava 32.1.1-jre #3953
This file contains 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: Go PreCommit | |
on: | |
push: | |
tags: ['v*'] | |
branches: ['master', 'release-*'] | |
paths: ['model/**', 'sdks/go.**', 'release/**', '.github/workflows/beam_PreCommit_Go.yml'] | |
pull_request_target: | |
branches: ['master', 'release-*' ] | |
paths: ['model/**', 'sdks/go.**', 'release/**'] | |
issue_comment: | |
types: [created] | |
schedule: | |
- cron: '0 */6 * * *' | |
workflow_dispatch: | |
#Setting explicit permissions for the action to avoid the default permissions which are `write-all` in case of pull_request_target event | |
permissions: | |
actions: write | |
pull-requests: read | |
checks: read | |
contents: read | |
deployments: read | |
id-token: none | |
issues: read | |
discussions: read | |
packages: read | |
pages: read | |
repository-projects: read | |
security-events: read | |
statuses: read | |
# This allows a subsequently queued workflow run to interrupt previous runs | |
concurrency: | |
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}' | |
cancel-in-progress: true | |
jobs: | |
beam_PreCommit_Go: | |
if: | | |
github.event_name == 'push' || | |
github.event_name == 'pull_request_target' || | |
github.event_name == 'schedule' || | |
github.event.comment.body == 'Run Go PreCommit' | |
runs-on: [self-hosted, ubuntu-20.04, main] | |
name: beam_PreCommit_Go | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Rerun on comment | |
if: github.event.comment.body == 'Run Go PreCommit' | |
uses: ./.github/actions/rerun-job-action | |
with: | |
pull_request_url: ${{ github.event.issue.pull_request.url }} | |
github_repository: ${{ github.repository }} | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
github_job: ${{ github.job }} | |
github_current_run_id: ${{ github.run_id }} | |
- name: Install Java | |
uses: actions/[email protected] | |
with: | |
distribution: 'zulu' | |
java-version: '8' | |
- name: Install Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '1.20' | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v2 | |
with: | |
cache-read-only: false | |
- name: run goPreCommit script | |
run: ./gradlew :goPreCommit |