Skip to content

chore(BLUE-129): pin golangci-lint-action version #103

chore(BLUE-129): pin golangci-lint-action version

chore(BLUE-129): pin golangci-lint-action version #103

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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Set up Go
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5
with:
go-version: '1.20'
- name: test
run: make test
- name: vet
run: make vet
- name: testacc
run: make testacc