Skip to content

Commit 1ff193c

Browse files
committed
change job name in ci
Signed-off-by: kerthcet <kerthcet@gmail.com>
1 parent b7ab87a commit 1ff193c

1 file changed

Lines changed: 15 additions & 15 deletions

File tree

.github/workflows/ci-test.yaml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,21 @@ on:
77
- synchronize
88

99
jobs:
10-
test-python:
10+
test-rust-core:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
15+
- name: Set up Rust
16+
uses: actions-rs/toolchain@v1
17+
with:
18+
toolchain: stable
19+
override: true
20+
21+
- name: Run tests
22+
run: make test
23+
24+
test-python-binding:
1125
runs-on: ubuntu-latest
1226

1327
steps:
@@ -39,17 +53,3 @@ jobs:
3953
working-directory: bindings/python
4054
run: |
4155
make test-integration
42-
43-
test-rust:
44-
runs-on: ubuntu-latest
45-
steps:
46-
- uses: actions/checkout@v4
47-
48-
- name: Set up Rust
49-
uses: actions-rs/toolchain@v1
50-
with:
51-
toolchain: stable
52-
override: true
53-
54-
- name: Run tests
55-
run: make test

0 commit comments

Comments
 (0)