feat(transport/http): support redirect errors in default error encode… #7283
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: Lint | |
| on: | |
| push: | |
| pull_request: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| resolve-modules: | |
| name: resolve module | |
| runs-on: ubuntu-latest | |
| outputs: | |
| matrix: ${{ steps.set-matrix.outputs.matrix }} | |
| steps: | |
| - name: Checkout Repo | |
| uses: actions/checkout@v6 | |
| - id: set-matrix | |
| run: ./hack/resolve-modules.sh | |
| lint: | |
| name: lint module | |
| runs-on: ubuntu-latest | |
| needs: resolve-modules | |
| strategy: | |
| matrix: ${{ fromJson(needs.resolve-modules.outputs.matrix) }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Lint | |
| uses: golangci/golangci-lint-action@v7 | |
| with: | |
| version: v2.0 | |
| working-directory: ${{ matrix.workdir }} | |
| skip-pkg-cache: true |