We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e5af870 + 9866575 commit 5fe51dfCopy full SHA for 5fe51df
.github/workflows/kind-e2e-tests.yaml
@@ -13,6 +13,15 @@ on:
13
- '*.*'
14
branches:
15
- main
16
+ pull_request_target:
17
+ types: [opened, synchronize, reopened]
18
+ paths:
19
+ - "**.go"
20
+ - "Makefile"
21
+ - "go.mod"
22
+ - "go.sum"
23
+ - "!docs/**"
24
+
25
jobs:
26
e2e-tests:
27
name: e2e tests
Makefile
@@ -70,7 +70,7 @@ test-e2e-cleanup: ## cleanup test e2e namespace/pr left open
70
71
.PHONY: test-e2e
72
test-e2e: test-e2e-cleanup ## run e2e tests
73
- @go test -failfast -count=1 -tags=e2e $(GO_TEST_FLAGS) ./test
+ @go test $(GO_TEST_FLAGS) -failfast -count=1 -tags=e2e $(GO_TEST_FLAGS) ./test
74
75
.PHONY: lint
76
lint: lint-go lint-yaml lint-md ## run all linters
0 commit comments