Skip to content

Commit 3c45e12

Browse files
fix(ci): Add the missing parser generation step in the clp-s-generated-code-checks GH workflow. (#1241)
1 parent d63d8cb commit 3c45e12

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/clp-s-generated-code-checks.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,12 @@ jobs:
2424
with:
2525
submodules: "recursive"
2626

27+
- name: "Set up Java"
28+
uses: "actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00"
29+
with:
30+
distribution: "temurin"
31+
java-version: "11"
32+
2733
- name: "Install task"
2834
shell: "bash"
2935
run: "npm install -g @go-task/cli"
@@ -32,6 +38,10 @@ jobs:
3238
name: "Install coreutils (for md5sum)"
3339
run: "brew install coreutils"
3440

41+
- name: "Generate parsers"
42+
shell: "bash"
43+
run: "task clp-s-generate-parsers"
44+
3545
- name: "Check if the generated parsers are the latest"
3646
shell: "bash"
3747
run:

0 commit comments

Comments
 (0)