Skip to content

[PoC] Adding wrapper to make it easy to retry specific operations (fo… #10

[PoC] Adding wrapper to make it easy to retry specific operations (fo…

[PoC] Adding wrapper to make it easy to retry specific operations (fo… #10

Workflow file for this run

name: test
on:
push:
branches:
- master
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
pgversion: [15, 14, 13, 12, 11]
env:
PGVERSION: ${{ matrix.pgversion }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.22'
- name: test
run: make test
- name: vet
run: make vet
- name: testacc
run: make testacc