Split Rust test into separate job
This commit is contained in:
parent
d0e0f6af4f
commit
6b929834b7
1 changed files with 9 additions and 0 deletions
|
@ -57,5 +57,14 @@ jobs:
|
|||
run: |
|
||||
source venv/bin/activate
|
||||
pytest tests/*.py
|
||||
|
||||
rust-test:
|
||||
name: Rust test
|
||||
runs-on: ubuntu-22.04
|
||||
steps:
|
||||
- name: Checkout the code
|
||||
uses: actions/checkout@v4
|
||||
- name: Set up Rust
|
||||
uses: https://github.com/dtolnay/rust-toolchain@stable
|
||||
- name: Run Rust tests
|
||||
run: cargo test
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue