Skip to content

Bump golang.org/x/oauth2 from 0.26.0 to 0.27.0 #164

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

Bump golang.org/x/oauth2 from 0.26.0 to 0.27.0 #164

Workflow file for this run

name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
services:
redis:
image: redis
ports:
- 6379:6379
options: --health-cmd "redis-cli -h localhost ping" --health-interval 10s --health-timeout 5s --health-retries 15
env:
REDIS_HOST: redis
REDIS_PORT: 6379
env:
REDIS_HOST: redis:6379
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...