Skip to content

Commit 875376d

Browse files
committed
WIP
1 parent a212526 commit 875376d

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

.github/workflows/ci.yml

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name: CI
55

66
on:
77
push:
8-
branches: ["main", "dev-0.1", "dev-0.2"]
8+
branches: ["main", "dev-0.1", "dev-0.2", "add-qt-qml-project"]
99
pull_request:
1010

1111
jobs:
@@ -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)