Skip to content

Gitcheck

Gitcheck #4

Workflow file for this run

name: PR check - e2e tests
on:
pull_request:
branches: [ main ]
jobs:
e2e-connectivity-test:
runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.20']
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
- name: Install kind
uses: helm/[email protected]
with:
install_only: true
- name: checkout
uses: actions/checkout@v3
- name: Run build
run: make build
- name: Build docker images
run: make docker-build
- name: Run e2e connectivity test on a kind cluster
run: sleep 550 && ./tests/k8s.sh
timeout-minutes: 10
- name: Run e2e connectivity test on a kind cluster with go dataplane
run: ./tests/k8s.sh go
timeout-minutes: 10
- name: Run end-to-end tests
run: make tests-e2e
timeout-minutes: 10