fix(lb): IgnoreSslServerVerify was not properly set + implement missing flags #253
Workflow file for this run
This file contains hidden or 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: pull-request | |
| on: | |
| - pull_request | |
| jobs: | |
| unit-test: | |
| strategy: | |
| matrix: | |
| go-version: [1.24.x] | |
| platform: [ubuntu-latest] | |
| runs-on: ${{ matrix.platform }} | |
| steps: | |
| # Checkout should always be before setup-go to ensure caching is working | |
| - name: checkout | |
| uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 1 | |
| - name: Install Go | |
| uses: actions/setup-go@v1 | |
| with: | |
| go-version: ${{ matrix.go-version }} | |
| - name: Run unit tests | |
| run: make test | |
| build-test: | |
| strategy: | |
| matrix: | |
| go-version: [1.24.x] | |
| platform: [ubuntu-latest] | |
| arch: [386, amd64, arm, arm64] | |
| runs-on: ${{ matrix.platform }} | |
| steps: | |
| # Checkout should always be before setup-go to ensure caching is working | |
| - name: checkout | |
| uses: actions/checkout@v2 | |
| with: | |
| fetch-depth: 1 | |
| - name: Install Go | |
| uses: actions/setup-go@v1 | |
| with: | |
| go-version: ${{ matrix.go-version }} | |
| - name: Building binary | |
| run: GOARCH=${{ matrix.arch }} make compile |