1
0
Fork 0

feat: adds conformance test gateway api

This commit is contained in:
Michael 2024-01-22 15:30:05 +01:00 committed by GitHub
parent f57cee578f
commit 5e0855ecc7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 333 additions and 15 deletions

37
.github/workflows/test-conformance.yaml vendored Normal file
View file

@ -0,0 +1,37 @@
name: Test K8s Gateway API conformance
on:
pull_request:
branches:
- '*'
paths:
- 'pkg/provider/kubernetes/gateway'
env:
GO_VERSION: '1.21'
CGO_ENABLED: 0
jobs:
test-conformance:
runs-on: ubuntu-20.04
steps:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go ${{ env.GO_VERSION }}
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Avoid generating webui
run: touch webui/static/index.html
- name: Build binary
run: make binary
- name: K8s Gateway API conformance test
run: sudo make test-gateway-api-conformance

View file

@ -4,9 +4,6 @@ on:
pull_request:
branches:
- '*'
push:
branches:
- 'gh-actions'
env:
GO_VERSION: '1.21'