Skip to content

chore(deps): bump k8s.io/code-generator from 0.29.4 to 0.30.1 #608

chore(deps): bump k8s.io/code-generator from 0.29.4 to 0.30.1

chore(deps): bump k8s.io/code-generator from 0.29.4 to 0.30.1 #608

name: 'Integration Test : Community Nightly'
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:
push:
branches:
- 'main'
- 'release/*'
pull_request:
branches:
- '*'
jobs:
test:
timeout-minutes: ${{ fromJSON(vars.GHA_DEFAULT_TIMEOUT) }}
strategy:
matrix:
dbmode:
- 'dbless'
- 'postgres'
router_flavor:
- 'traditional_compatible'
- 'expressions'
env:
KONG_ROUTER_FLAVOR: ${{ matrix.router_flavor }}
KONG_IMAGE_REPO: "kong/kong"
KONG_IMAGE_TAG: "master"
KONG_ANONYMOUS_REPORTS: "off"
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Setup Kong
run: make setup-kong-${{ matrix.dbmode }}
- name: Run tests
run: make test-coverage
- name: Upload Code Coverage
uses: codecov/[email protected]
continue-on-error: true
with:
name: codecov-nightly
flags: nightly,integration,community
fail_ci_if_error: true