Skip to content

chore: bump Go version to 1.24 and golangci-lint to v2.4 #709

chore: bump Go version to 1.24 and golangci-lint to v2.4

chore: bump Go version to 1.24 and golangci-lint to v2.4 #709

Workflow file for this run

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