fix(server): enforce listen-metrics-urls client TLS info when its scheme is https/unixs #13236
Workflow file for this run
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: grpcProxy-tests | |
on: [push, pull_request] | |
permissions: read-all | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
target: | |
- linux-amd64-grpcproxy-integration | |
- linux-amd64-grpcproxy-e2e | |
steps: | |
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 | |
- id: goversion | |
run: echo "goversion=$(cat .go-version)" >> "$GITHUB_OUTPUT" | |
- uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1 | |
with: | |
go-version: ${{ steps.goversion.outputs.goversion }} | |
- env: | |
TARGET: ${{ matrix.target }} | |
run: | | |
set -euo pipefail | |
echo "${TARGET}" | |
case "${TARGET}" in | |
linux-amd64-grpcproxy-integration) | |
GOOS=linux GOARCH=amd64 CPU=4 make test-grpcproxy-integration | |
;; | |
linux-amd64-grpcproxy-e2e) | |
GOOS=linux GOARCH=amd64 CPU=4 make test-grpcproxy-e2e | |
;; | |
*) | |
echo "Failed to find target" | |
exit 1 | |
;; | |
esac |