Skip to content

Test

Test #80

Workflow file for this run

name: "Test"
concurrency:
group: ${{ github.workflow }} ${{ github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
on:
pull_request: {}
push:
branches:
- main
schedule:
- cron: '0 0 * * *' # every day at midnight, to test against nightlies
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
kongVersion:
- "3.3.x"
steps:
- uses: actions/checkout@v3
- uses: Kong/kong-pongo-action@v1
with:
pongo_version: master
kong_version: ${{ matrix.kongVersion }}
# Non-Kong-Inc users should provide their Enterprise license as a secret
# if testing against Enterprise versions.
# Kong Inc users should use the `Kong/kong-license` action
license: ${{ secrets.KONG_LICENSE_DATA }}
# the following 3 entries are only for Kong Inc internal use to test against
# the private Kong Enterprise development images, external users should
# delete these.
enterprise_nightly_docker_username: ${{ secrets.GHA_DOCKERHUB_PULL_USER }}
enterprise_nightly_docker_password: ${{ secrets.GHA_KONG_ORG_DOCKERHUB_PUBLIC_TOKEN }}
# github token with permissions to clone the kong-ee repo
github_token: ${{ secrets.GHA_KONG_BOT_READ_TOKEN }}
- run: pongo run -- --coverage