github.com/argoproj-labs/argocd-operator@v0.10.0/.github/workflows/lint.yaml (about) 1 name: Integration tests 2 on: 3 pull_request: 4 branches: 5 - 'master' 6 - 'release-*' 7 - 'rhos-*' 8 9 jobs: 10 lint_code: 11 name: Run golangci-lint on PR 12 runs-on: ubuntu-latest 13 steps: 14 - name: Checkout code 15 uses: actions/checkout@v2 16 - name: Run golangci-lint 17 uses: golangci/golangci-lint-action@v3 18 with: 19 version: v1.52.2 20 args: --timeout 5m --exclude SA5011 21 only-new-issues: true 22