Add tests to build job
Some checks failed
CI / Formatting (push) Successful in 34s
CI / Clippy (push) Failing after 55s
CI / Build (and test, for now) (push) Failing after 1m16s

This commit is contained in:
Michael Bradley 2025-02-23 05:32:28 -05:00
parent ff6cc64785
commit 0fe8bd7de0
Signed by: MichaelBradley
SSH key fingerprint: SHA256:cj/YZ5VT+QOKncqSkx+ibKTIn0Obg7OIzwzl9BL8EO8

View file

@ -31,7 +31,7 @@ jobs:
run: cargo clippy -- -D warnings
build:
name: Build
name: Build (and test, for now)
runs-on: docker
steps:
- name: Checkout
@ -54,3 +54,11 @@ jobs:
run: |
source venv/bin/activate
maturin develop
- name: Run Python tests
run: |
source venv/bin/activate
pytest tests/*.py
- name: Run Rust tests
run: |
source venv/bin/activate
cargo test