Skip to content

fix: use hardcoded Konnect version instead of retrieving it #2208

fix: use hardcoded Konnect version instead of retrieving it

fix: use hardcoded Konnect version instead of retrieving it #2208

Workflow file for this run

name: Integration Test
on:
push:
branches:
- main
pull_request: {}
jobs:
integration:
strategy:
matrix:
kong_image:
- 'kong:1.4.3'
- 'kong:1.5.1'
- 'kong:2.0.5'
- 'kong:2.1.4'
- 'kong:2.2.2'
- 'kong:2.3.3'
- 'kong:2.4.1'
- 'kong:2.5.1'
- 'kong:2.6.0'
- 'kong:2.7'
- 'kong:2.8'
- 'kong:3.0'
- 'kong:3.1'
- 'kong:3.2'
- 'kong:3.3'
- 'kong/kong:master-alpine'
env:
KONG_ANONYMOUS_REPORTS: "off"
KONG_IMAGE: ${{ matrix.kong_image }}
runs-on: ubuntu-latest
steps:
- name: Setup go
uses: actions/setup-go@v4
with:
go-version: '^1.20'
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Kong
run: make setup-kong
- name: Run integration tests
run: make test-integration