Remove CrashLoopBackOff check enforced by cluster ID change in E2E module tests #1108
Workflow file for this run
This file contains 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 go linter | |
on: | |
pull_request: | |
branches: [main, sm-integration] | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- ready_for_review | |
paths-ignore: | |
- "**.md" | |
- "sec-scanners-config.yaml" | |
jobs: | |
run-go-linter: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up go environment | |
uses: actions/setup-go@v4 | |
with: | |
go-version-file: 'go.mod' | |
- name: Go linter | |
env: | |
GOLINT_TIMEOUT: ${{ vars.GOLINT_TIMEOUT }} | |
run: make go-lint |