Skip to content

Graduating Cloud Workstations resources from "google-beta" to "google" provider #17102

Graduating Cloud Workstations resources from "google-beta" to "google" provider

Graduating Cloud Workstations resources from "google-beta" to "google" provider #17102

Workflow file for this run

name: GoTest
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: Build & Test
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Set up Go
uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.31.0
with:
go-version-file: "go.mod"
- name: Get dependencies
run: |
go mod download
- name: Build and Lint
run: make build
- name: Test
run: |
make docscheck
make testnolint