Skip to content

Bump google.golang.org/api from 0.206.0 to 0.209.0 #20

Bump google.golang.org/api from 0.206.0 to 0.209.0

Bump google.golang.org/api from 0.206.0 to 0.209.0 #20

Workflow file for this run

name: Go
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
pull-requests: read
jobs:
golangci:
name: Go Lint
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: ./go.mod
- name: Set up Golang build cache
uses: actions/cache@v4
with:
path: ~/.cache/go-build
key: ${{ runner.os }}-golang-golangci-lint-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-golang-
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
test:
runs-on: ubuntu-latest
name: Go Test
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: ./go.mod
- name: Set up Golang build cache
uses: actions/cache@v4
with:
path: ~/.cache/go-build
key: ${{ runner.os }}-golang-test-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-golang-
- name: Download go modules
run: go mod download
- name: Test
uses: robherley/go-test-action@v0
with:
testArguments: ./...