Skip to content

[gateway] support descriptions in gateway list items #6260

[gateway] support descriptions in gateway list items

[gateway] support descriptions in gateway list items #6260

Workflow file for this run

name: Unit Tests
on: [pull_request]
jobs:
test:
runs-on: ubuntu-latest
env:
CLOUDFLARE_ACCOUNT_ID: f037e56e89293a057740de681ac9abbe
CLOUDFLARE_ALT_DOMAIN: terraform2.cfapi.net
CLOUDFLARE_ALT_ZONE_ID: b72110c08e3382597095c29ba7e661ea
CLOUDFLARE_DOMAIN: terraform.cfapi.net
CLOUDFLARE_ZONE_ID: 0da42c8d2132a9ddaf714f9e7c920711
CLOUDFLARE_EMAIL: terraform-acceptance-test@cfapi.net
CLOUDFLARE_API_KEY: ${{ secrets.CLOUDFLARE_API_KEY }}
steps:
- name: Check out code repository source code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
id: go
- uses: actions/cache@v4
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go${{ env.GO_VERSION }}-${{ hashFiles('**/go.sum') }}
- name: Vet
run: make vet
- name: Test
run: make test