Skip to content

Remove deprecated --rm-dist flag and update action versions #5

Remove deprecated --rm-dist flag and update action versions

Remove deprecated --rm-dist flag and update action versions #5

Workflow file for this run

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