chore: set kubeconfig when run e2e test #300
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: golangci-lint | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - release-v2-dev | |
| pull_request: | |
| branches: | |
| - master | |
| - release-v2-dev | |
| jobs: | |
| golangci: | |
| name: lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Go Env | |
| uses: actions/setup-go@v4 | |
| with: | |
| go-version: "1.22" | |
| - name: check go path for debug | |
| run: go env | |
| - name: 🛩️ golangci-lint | |
| run: make lint |