We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7ab87a commit 1ff193cCopy full SHA for 1ff193c
1 file changed
.github/workflows/ci-test.yaml
@@ -7,7 +7,21 @@ on:
7
- synchronize
8
9
jobs:
10
- test-python:
+ 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:
25
runs-on: ubuntu-latest
26
27
steps:
@@ -39,17 +53,3 @@ jobs:
39
53
working-directory: bindings/python
40
54
run: |
41
55
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
- - name: Run tests
- run: make test
0 commit comments