Skip to content

Commit db1b1e9

Browse files
committed
Merge branch 'issues-2'
2 parents ad4e53e + a83e641 commit db1b1e9

2 files changed

Lines changed: 13 additions & 12 deletions

File tree

.github/workflows/push-test.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,6 @@ jobs:
1717
run: make build
1818
- name: Test
1919
run: make test
20-
- name: Setup mxbuild
21-
run: ./bin/mxcli setup mxbuild --version 11.9.0
22-
- name: Integration tests
23-
run: make test-integration
24-
timeout-minutes: 30
25-
- name: Lint Go
26-
run: make lint-go
27-
- name: Vulnerability scan
28-
run: |
29-
go install golang.org/x/vuln/cmd/govulncheck@latest
30-
govulncheck ./...
3120
- name: Check MDL example scripts
3221
run: |
3322
FAILED=0
@@ -44,3 +33,14 @@ jobs:
4433
echo "::endgroup::"
4534
done
4635
exit $FAILED
36+
- name: Setup mxbuild
37+
run: ./bin/mxcli setup mxbuild --version 11.9.0
38+
- name: Integration tests
39+
run: make test-integration
40+
timeout-minutes: 30
41+
- name: Lint Go
42+
run: make lint-go
43+
- name: Vulnerability scan
44+
run: |
45+
go install golang.org/x/vuln/cmd/govulncheck@latest
46+
govulncheck ./...

mdl-examples/doctype-tests/empty_java_action_argument.mdl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ create java action SampleModule.Recalculate(
88
CompanyId: string,
99
RecalculateAll: boolean not null,
1010
ItemList: list of SampleModule.Item
11-
) returns void;
11+
) returns void as $$
12+
$$;
1213

1314
create microflow SampleModule.ACT_RecalculateOpenItems ()
1415
returns Void

0 commit comments

Comments
 (0)