Skip to content

Dev 84969 add crdb test #53

Dev 84969 add crdb test

Dev 84969 add crdb test #53

Workflow file for this run

name: test
on:
push:
branches:
- master
pull_request:
jobs:
test-pg:
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 tech=pg
test-crdb:
runs-on: ubuntu-latest
strategy:
matrix:
crdbversion: [ v23.2 ]
env:
CRDBVERSION: ${{ matrix.crdbversion }}
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 tech=crdb