chore(deps): Bump golangci/golangci-lint-action from 4.0.0 to 5.1.0 #1141
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 short e2e tests | |
on: | |
pull_request: | |
types: [opened, edited, synchronize, reopened, labeled, unlabeled] | |
jobs: | |
e2e: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
- name: setupGo | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "=1.22.0" | |
- name: Run e2e tests | |
run: ISOLATED_MODE=true USE_EKS=false GINKGO_LABEL_FILTER=short make test-e2e | |
- name: Collect run artifacts | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: artifacts | |
path: _artifacts |