Skip to content

Commit 5fe51df

Browse files
authored
Merge pull request #677 from chmouel/makefile-fix
2 parents e5af870 + 9866575 commit 5fe51df

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

.github/workflows/kind-e2e-tests.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,15 @@ on:
1313
- '*.*'
1414
branches:
1515
- 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+
1625
jobs:
1726
e2e-tests:
1827
name: e2e tests

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ test-e2e-cleanup: ## cleanup test e2e namespace/pr left open
7070

7171
.PHONY: test-e2e
7272
test-e2e: test-e2e-cleanup ## run e2e tests
73-
@go test -failfast -count=1 -tags=e2e $(GO_TEST_FLAGS) ./test
73+
@go test $(GO_TEST_FLAGS) -failfast -count=1 -tags=e2e $(GO_TEST_FLAGS) ./test
7474

7575
.PHONY: lint
7676
lint: lint-go lint-yaml lint-md ## run all linters

0 commit comments

Comments
 (0)