Skip to content

Commit a34858a

Browse files
committed
setup CI for cubetranspilers testing
1 parent e51ad70 commit a34858a

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/push.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ on:
1313
- 'rust/cubeorchestrator/**'
1414
- 'rust/cubeshared/**'
1515
- 'rust/cubesqlplanner/**'
16+
- 'rust/cubetranspilers/**'
1617
- '.eslintrc.js'
1718
- '.prettierrc'
1819
- 'package.json'
@@ -32,6 +33,7 @@ on:
3233
- 'rust/cubeorchestrator/**'
3334
- 'rust/cubeshared/**'
3435
- 'rust/cubesqlplanner/**'
36+
- 'rust/cubetranspilers/**'
3537
- '.eslintrc.js'
3638
- '.prettierrc'
3739
- 'package.json'
@@ -133,6 +135,9 @@ jobs:
133135
- name: Cargo test cubeshared
134136
run: |
135137
cargo test --manifest-path rust/cubeshared/Cargo.toml -j 1
138+
- name: Cargo test cubetranspilers
139+
run: |
140+
cargo test --manifest-path rust/cubetranspilers/Cargo.toml -j 1
136141
# - name: Cargo test cubesql
137142
# run: |
138143
# cargo test --manifest-path rust/cubesql/Cargo.toml -j 1
@@ -196,6 +201,9 @@ jobs:
196201
- name: Cargo fmt cubeshared
197202
run: |
198203
cargo fmt --manifest-path rust/cubeshared/Cargo.toml -- --check
204+
- name: Cargo fmt cubetranspilers
205+
run: |
206+
cargo fmt --manifest-path rust/cubetranspilers/Cargo.toml -- --check
199207
# - name: Cargo fmt cubesql
200208
# run: |
201209
# cargo fmt --manifest-path rust/cubesql/Cargo.toml -- --check
@@ -263,6 +271,9 @@ jobs:
263271
- name: Cargo build cubeshared
264272
run: |
265273
cargo build --manifest-path rust/cubeshared/Cargo.toml -j 4
274+
- name: Cargo build cubetranspilers
275+
run: |
276+
cargo build --manifest-path rust/cubetranspilers/Cargo.toml -j 4
266277
# - name: Cargo build cubesql
267278
# run: |
268279
# cargo build --manifest-path rust/cubesql/Cargo.toml -j 4

0 commit comments

Comments
 (0)