Skip to content

Bump google.golang.org/api from 0.199.0 to 0.200.0 #2007

Bump google.golang.org/api from 0.199.0 to 0.200.0

Bump google.golang.org/api from 0.199.0 to 0.200.0 #2007

Workflow file for this run

---
name: Lint
on:
push:
branches:
- master
pull_request:
jobs:
lint:
name: Lint
runs-on: ubuntu-22.04
strategy:
matrix:
go: ["oldstable", "stable"]
steps:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Install dependencies
run: sudo apt update && sudo apt -y install build-essential libvips-dev
# This will install the staticcheck version as described in the go.mod file
- name: Install linter
run: go install honnef.co/go/tools/cmd/staticcheck
- name: Lint
run: staticcheck ./...