Skip to content

Commit c2ccb97

Browse files
committed
Add CI
1 parent ed7306a commit c2ccb97

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/ci.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ jobs:
2424
corporate_tag:
2525
- ""
2626
- "kola"
27+
style:
28+
- "snake"
29+
- "Camel"
2730
steps:
2831
- uses: actions/checkout@v3
2932
with:
@@ -49,6 +52,11 @@ jobs:
4952
run: |
5053
echo "--header-only" >> genargs
5154
55+
- name: Construct generator args (style)
56+
shell: bash
57+
run: |
58+
echo "--style ${{ matrix.style }}" >> genargs
59+
5260
- name: Construct generator args (corporate tag)
5361
if: ${{ matrix.corporate_tag != '' }}
5462
shell: bash
@@ -119,6 +127,9 @@ jobs:
119127
- ""
120128
- "kola"
121129
- "grdz::kola"
130+
style:
131+
- "snake"
132+
- "Camel"
122133
steps:
123134
- uses: actions/checkout@v3
124135
with:
@@ -138,6 +149,11 @@ jobs:
138149
run: |
139150
echo "--dir-path ./_project --name super_xyz --camel-name SuperXyz --project-type app" >> genargs
140151
152+
- name: Construct generator args (style)
153+
shell: bash
154+
run: |
155+
echo "--style ${{ matrix.style }}" >> genargs
156+
141157
- name: Construct generator args (corporate tag)
142158
if: ${{ matrix.corporate_tag != '' }}
143159
shell: bash

0 commit comments

Comments
 (0)