Skip to content

Bump golang.org/x/oauth2 from 0.19.0 to 0.20.0 #125

Bump golang.org/x/oauth2 from 0.19.0 to 0.20.0

Bump golang.org/x/oauth2 from 0.19.0 to 0.20.0 #125

Workflow file for this run

name: Build and test Go
on: [push, pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.22.2
- name: Checkout
uses: actions/checkout@v4
- name: Build
env:
GOPROXY: "https://proxy.golang.org"
run: make all
- name: Test
env:
GOPROXY: "https://proxy.golang.org"
run: make test
- name: Vet
run: go vet ./...
- uses: dominikh/staticcheck-action@v1.3.1
with:
version: latest
install-go: false