Skip to content

gomod: bump golang.org/x/oauth2 from 0.7.0 to 0.14.0 #119

gomod: bump golang.org/x/oauth2 from 0.7.0 to 0.14.0

gomod: bump golang.org/x/oauth2 from 0.7.0 to 0.14.0 #119

Workflow file for this run

name: Build and Test
on:
pull_request:
types:
- opened
- synchronize
- reopened
push:
branches:
- main
jobs:
build:
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-go
- run: go build -v ./...
- run: go test -v ./...
format:
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-go
- run: go mod tidy
- run: go fmt ./...
- run: git diff --exit-code --stat
lint:
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-go
- uses: reviewdog/action-golangci-lint@v2