Skip to content

Commit 4ad8746

Browse files
laurazardndeloof
authored andcommitted
Add 🥒 GHA workflow
Signed-off-by: Laura Brehm <[email protected]>
1 parent 62b3e74 commit 4ad8746

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,7 @@ jobs:
134134
mode:
135135
- plugin
136136
- standalone
137+
- cucumber
137138
steps:
138139
-
139140
name: Checkout
@@ -186,6 +187,11 @@ jobs:
186187
rm -f /usr/local/bin/docker-compose
187188
cp bin/build/docker-compose /usr/local/bin
188189
make e2e-compose-standalone
190+
-
191+
name: Run cucumber tests
192+
if: ${{ matrix.mode == 'cucumber'}}
193+
run: |
194+
make test-cucumber
189195
190196
release:
191197
permissions:

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,10 @@ e2e-compose: ## Run end to end local tests in plugin mode. Set E2E_TEST=TestName
6767
e2e-compose-standalone: ## Run End to end local tests in standalone mode. Set E2E_TEST=TestName to run a single test
6868
go test $(TEST_FLAGS) -v -count=1 -parallel=1 --tags=standalone ./pkg/e2e
6969

70+
.PHONY: test-cucumber
71+
test-cucumber:
72+
go test $(TEST_FLAGS) -v -count=1 -parallel=1 ./e2e
73+
7074
.PHONY: build-and-e2e-compose
7175
build-and-e2e-compose: build e2e-compose ## Compile the compose cli-plugin and run end to end local tests in plugin mode. Set E2E_TEST=TestName to run a single test
7276

0 commit comments

Comments
 (0)