-
Notifications
You must be signed in to change notification settings - Fork 133
35 lines (32 loc) · 1.29 KB
/
integration-konnect.yaml
File metadata and controls
35 lines (32 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: Konnect Integration Test
concurrency:
# Only run one workflow at a time. Konnect integration tests cannot be run in parallel
# as they rely on manifests with static identifiers and/or names that would conflict
# if run in parallel.
# Ref: https://docs.github.com/en/actions/using-jobs/using-concurrency
group: ${{ github.workflow }}
cancel-in-progress: false
on: [pull_request]
jobs:
integration:
timeout-minutes: ${{ fromJSON(vars.DECK_WORKFLOW_KONNECT_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: Harden Runner
uses: step-security/harden-runner@c6295a65d1254861815972266d5933fd6e532bdf # v2.11.1
with:
egress-policy: audit
- name: Checkout repository
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
- name: Setup go
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5
with:
go-version-file: go.mod
- name: Run integration tests
run: make test-integration