Skip to content

build(deps): bump golang.org/x/oauth2 from 0.16.0 to 0.19.0 #116

build(deps): bump golang.org/x/oauth2 from 0.16.0 to 0.19.0

build(deps): bump golang.org/x/oauth2 from 0.16.0 to 0.19.0 #116

Workflow file for this run

name: Go
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.19' ]
steps:
- name: Set up Go ${{ matrix.go }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Check out code
uses: actions/checkout@v4
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...