ING-1363: Ensure client cert auth fails when disabled #1348
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: Run Linter | |
| on: | |
| push: | |
| tags: | |
| - v* | |
| branches: | |
| - master | |
| pull_request: | |
| jobs: | |
| lint: | |
| name: Lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version: 1.23 | |
| - uses: arduino/setup-protoc@v3 | |
| with: | |
| version: 31.1 | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Generate Files | |
| run: | | |
| go generate ./... | |
| - name: goimports | |
| run: | | |
| go run golang.org/x/tools/cmd/goimports@latest -w . | |
| find . -name go.mod -execdir go mod tidy \; | |
| if [ -n "$(git status --porcelain)" ]; then | |
| echo 'To fix this check, run "goimports -w . && find . -name go.mod -execdir go mod tidy \;"' | |
| git status # Show the files that failed to pass the check. | |
| exit 1 | |
| fi | |
| - name: golangci-lint | |
| uses: golangci/golangci-lint-action@v8 | |
| with: | |
| version: v2.1.6 | |
| args: --timeout=3m |