Skip to content

Bump google.golang.org/api from 0.40.0 to 0.167.0 #372

Bump google.golang.org/api from 0.40.0 to 0.167.0

Bump google.golang.org/api from 0.40.0 to 0.167.0 #372

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
jobs:
build:
name: Build
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
go: ['1.18']
env:
VERBOSE: 1
GOFLAGS: -mod=readonly
GOPROXY: https://proxy.golang.org
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
- name: Checkout code
uses: actions/checkout@v3
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.45.0
args: --timeout 5m0s
- name: Test
run: make test
- name: E2E
run: make e2e