feat: add wasm filter-chain entity support #1460
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Konnect Integration Test | |
concurrency: | |
# Run only for most recent commit in PRs but for all tags and commits on main | |
# Ref: https://docs.github.com/en/actions/using-jobs/using-concurrency | |
group: ${{ github.workflow }}-${{ github.head_ref || github.sha }} | |
cancel-in-progress: true | |
on: [pull_request] | |
jobs: | |
integration: | |
timeout-minutes: ${{ fromJSON(vars.GHA_DEFAULT_TIMEOUT) }} | |
env: | |
KONG_ANONYMOUS_REPORTS: "off" | |
DECK_KONNECT_EMAIL : ${{ secrets.DECK_KONNECT_EMAIL }} | |
DECK_KONNECT_PASSWORD : ${{ secrets.DECK_KONNECT_PASSWORD }} | |
DECK_KONNECT_ADDR : ${{ secrets.DECK_KONNECT_ADDR }} | |
DECK_KONNECT_TOKEN : ${{ secrets.DECK_KONNECT_TOKEN }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '^1.20' | |
- name: Run integration tests | |
run: make test-integration |