Skip to content

specific version

specific version #80

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.20'
- name: test
run: make test
- name: vet
run: make vet
- name: testacc
run: make testacc