Skip to content
This repository has been archived by the owner on May 28, 2024. It is now read-only.

Update module google.golang.org/api to v0.172.0 #674

Update module google.golang.org/api to v0.172.0

Update module google.golang.org/api to v0.172.0 #674

Workflow file for this run

name: Go
on:
push:
branches: [master, develop]
pull_request:
branches: [master, develop]
jobs:
build:
name: Build
runs-on: [self-hosted, linux]
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v3
with:
go-version: ^1.18
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Get dependencies
run: go mod download
- name: Build
run: go build -v .
- name: Test
run: go test -v .