File tree Expand file tree Collapse file tree 2 files changed +14
-31
lines changed Expand file tree Collapse file tree 2 files changed +14
-31
lines changed Original file line number Diff line number Diff line change 9
9
- main
10
10
11
11
jobs :
12
+ extension-developer-e2e :
13
+ runs-on : ubuntu-latest
14
+ steps :
15
+ - uses : actions/checkout@v4
16
+
17
+ - uses : actions/setup-go@v5
18
+ with :
19
+ go-version-file : go.mod
20
+
21
+ - name : Run the extension developer e2e test
22
+ run : |
23
+ make extension-developer-e2e
24
+
12
25
e2e-kind :
13
26
runs-on : ubuntu-latest
14
27
steps :
21
34
go-version-file : go.mod
22
35
23
36
- name : Run e2e tests
24
- run : |
25
- # By default make stops building on first non-zero exit code which
26
- # in case of E2E tests will mean that code coverage will only be
27
- # collected on successful runs. We want to collect coverage even
28
- # after failing tests.
29
- # With -k flag make will continue the build, but will return non-zero
30
- # exit code in case of any errors.
31
- ARTIFACT_PATH=/tmp/artifacts make test-e2e
37
+ run : ARTIFACT_PATH=/tmp/artifacts make test-e2e
32
38
33
39
34
40
if : failure()
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments