Skip to content
activity

GitHub Action

Kong Pongo

v1.0.2 Latest version

Kong Pongo

activity

Kong Pongo

Installs Pongo, tool for testing Kong Gateway plugins

Installation

Copy and paste the following snippet into your .yml file.

              

- name: Kong Pongo

uses: Kong/kong-pongo-action@v1.0.2

Learn more about this action in Kong/kong-pongo-action

Choose a version

Kong Pongo action

A Github Action for running plugin tests using Kong Pongo.

Usage

See the Kong Pongo repo for help on Pongo commands and environments.

This action will install and configure Pongo for a specific version of Kong Gateway to test against. The settings will be exported as standard Pongo environment variables, such that any follow up commands will work with the same settings.

Inputs

input default required description
kong_version yes The Kong Gateway version to test your plugin against. Check the Pongo documentation for allowed formats for latest patch releases and/or nightly builds.
pongo_version "latest" yes The Pongo version to use for testing. This can be a Pongo version tag or branch name (use "master" for bleeding-edge). A special case is "latest" which will use the latest released version.
start_environment "true" no By default the test environment will be spun up. Set this value to "false" to not start the test environment.
build_image "true" no By default the test image will be build. Set this value to "false" to not build the test image.
license value of env var KONG_LICENSE_DATA no The Kong license. This is only required if you are testing a plugin against an Enterprise version of the Kong Gateway.
Note: make sure to pass it to Github as a secret!

Example

# .github/workflows/test.yaml

name: "Test"
on: [push, pull_request]

jobs:
  test:
    runs-on: ubuntu-latest

    strategy:
      fail-fast: false
      matrix:
        kong_version:
        - "2.7.x"
        - "2.8.x"
        - "dev"

    steps:
    - uses: actions/checkout@v3

    # install Pongo, build the image for the Kong version, and
    # start the environment (postgres, cassandra, etc)
    - uses: Kong/kong-pongo-action@v1
      with:
        kong_version: ${{ matrix.kong_version }}

    # Pongo commands will now work after the setup step above
    - run: pongo run

History

Version 1.0.3 (released 28-Aug-2024)

  • fix: conditional syntax errors in steps[*].if

Version 1.0.2 (released 26-Feb-2023)

  • Nightlies: also export required variable if version is "nightly-ee" (the old name for "dev-ee" used since Pongo 2)

Version 1.0.1 (released 20-Oct-2022)

  • Github: replace deprecated "set-output" with environment files

Version 1 (released 7-Jul-2022)

  • Initial version of the action