proxyproto: PROXY protocol net.Conn and net.Listener impl #737
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: E2E | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
e2e: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set version env variables | |
run: | | |
cat .version >> $GITHUB_ENV | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "${{env.GO_VERSION}}" | |
- name: Build forwarder container | |
run: make update-devel-image | |
- name: Generate certificates | |
run: make -C e2e/certs certs | |
- name: Build test containers | |
run: make -j4 -C e2e update-helper-images update-test-image | |
- name: Run e2e test | |
run: make -C e2e run-e2e |