This repository was archived by the owner on Jul 25, 2024. It is now read-only.
Bump golang.org/x/oauth2 from 0.18.0 to 0.19.0 #225
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.0 | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Build | |
env: | |
GOPROXY: "https://proxy.golang.org" | |
run: go build ./... | |
# - name: Test | |
# env: | |
# GOPROXY: "https://proxy.golang.org" | |
# run: go test -v . | |
- name: Vet | |
run: go vet ./... | |
- uses: dominikh/[email protected] | |
with: | |
version: latest | |
install-go: false |