Skip to content

Bump golang.org/x/oauth2 from 0.25.0 to 0.26.0 #186

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

Bump golang.org/x/oauth2 from 0.25.0 to 0.26.0 #186

Workflow file for this run

name: build and test
on:
workflow_dispatch: null
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
strategy:
matrix:
go-version: ["stable", "oldstable"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Build binary
run: make
- name: Test
run: make test