Add Rust tests job
This commit is contained in:
parent
fe0fa80cf6
commit
1e212fc077
1 changed files with 11 additions and 0 deletions
|
@ -57,3 +57,14 @@ jobs:
|
||||||
run: pip install -r requirements.txt
|
run: pip install -r requirements.txt
|
||||||
- name: Build Rust code
|
- name: Build Rust code
|
||||||
run: maturin develop
|
run: maturin develop
|
||||||
|
|
||||||
|
test-rust:
|
||||||
|
name: Test Rust
|
||||||
|
runs-on: docker
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
- name: Set up Rust
|
||||||
|
uses: https://github.com/actions-rust-lang/setup-rust-toolchain@v1
|
||||||
|
- name: Run Rust tests
|
||||||
|
run: cargo test
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue