Skip to content

build(deps): bump google.golang.org/api from 0.85.0 to 0.131.0 #198

build(deps): bump google.golang.org/api from 0.85.0 to 0.131.0

build(deps): bump google.golang.org/api from 0.85.0 to 0.131.0 #198

Workflow file for this run

name: test
on:
push:
branches:
- master
pull_request:
branches:
- master
env:
GO_VERSION: "~1.18"
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.45
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3.3.1
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
- name: Test
run: go test -v ./...