Skip to content

mod: bump golang.org/x/oauth2 from 0.17.0 to 0.19.0 #166

mod: bump golang.org/x/oauth2 from 0.17.0 to 0.19.0

mod: bump golang.org/x/oauth2 from 0.17.0 to 0.19.0 #166

Workflow file for this run

name: Integration
on:
push:
branches: [ main ]
paths:
- '**.go'
- 'go.mod'
- '.github/workflows/integration.yml'
pull_request:
paths:
- '**.go'
- 'go.mod'
- '.github/workflows/integration.yml'
env:
GOPROXY: "https://proxy.golang.org"
jobs:
test:
name: Test
runs-on: ubuntu-latest
services:
postgres:
image: postgres:9.6
env:
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: 1.21.x
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8
run_install: |
- cwd: pgrokd/web
- name: Run tests
run: |
go test ./integration-tests -v -long