Skip to content

Bump golang.org/x/oauth2 from 0.25.0 to 0.27.0 #29

Bump golang.org/x/oauth2 from 0.25.0 to 0.27.0

Bump golang.org/x/oauth2 from 0.25.0 to 0.27.0 #29

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ '1.24' ]
steps:
- uses: actions/checkout@v4 # Updated to the latest version
- name: Set up Go
uses: actions/setup-go@v5 # Updated to the latest version
with:
go-version: ${{ matrix.go-version }}
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...