Skip to content

Prep for 1.11.1 tag #30

Prep for 1.11.1 tag

Prep for 1.11.1 tag #30

Workflow file for this run

name: pre-release-ci
on:
push:
tags:
- 'v*'
jobs:
acceptance-test:
name: acceptance-test
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v3
with:
ref: ${{github.event.pull_request.head.ref}}
repository: ${{github.event.pull_request.head.repo.full_name}}
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.22
# We don't pin the version of terraform to ensure the tests run against
# the latest CLI version.
- name: Install terraform
uses: hashicorp/setup-terraform@v3
- name: Tests
run: make testacc
env:
COCKROACH_API_KEY: ${{ secrets.COCKROACH_API_KEY }}