Skip to content

Commit 46538df

Browse files
committed
ci: e2e test
On-behalf-of: @SAP [email protected] Signed-off-by: Christopher Junk <[email protected]>
1 parent da9eccb commit 46538df

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

.github/workflows/ci.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,14 @@ jobs:
1616
build_validate_test:
1717
uses: openmcp-project/build/.github/workflows/ci.lib.yaml@main
1818
secrets: inherit
19+
20+
e2e_test:
21+
runs-on: ubuntu-24.04
22+
steps:
23+
- uses: actions/checkout@v6
24+
- name: Set up Go
25+
uses: actions/setup-go@v6
26+
with:
27+
go-version: "1.25"
28+
- name: e2e test
29+
run: go test -v ./e2e/... -count=1

Taskfile.yaml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,5 @@ includes:
55
taskfile: hack/common/Taskfile_library.yaml
66
flatten: true
77
vars:
8-
CODE_DIRS: '{{.ROOT_DIR}}/internal/... {{.ROOT_DIR}}/pkg/... {{.ROOT_DIR}}/e2e/...'
9-
REPO_URL: 'https://github.com/openmcp-project/openmcp-testing'
10-
11-
# TODO: overwirte task test to run e2e with verbosity
8+
CODE_DIRS: "{{.ROOT_DIR}}/internal/... {{.ROOT_DIR}}/pkg/..."
9+
REPO_URL: "https://github.com/openmcp-project/openmcp-testing"

0 commit comments

Comments
 (0)