Split Rust test into separate job
Some checks failed
CI / Formatting (push) Successful in 35s
CI / Clippy (push) Successful in 38s
CI / Build (and tests, for now) (push) Successful in 1m30s
CI / Rust test (push) Failing after 58s

This commit is contained in:
Michael Bradley 2025-02-23 08:42:46 -05:00
parent d0e0f6af4f
commit 6b929834b7
Signed by: MichaelBradley
SSH key fingerprint: SHA256:cj/YZ5VT+QOKncqSkx+ibKTIn0Obg7OIzwzl9BL8EO8

View file

@ -57,5 +57,14 @@ jobs:
run: | run: |
source venv/bin/activate source venv/bin/activate
pytest tests/*.py 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 - name: Run Rust tests
run: cargo test run: cargo test