diff --git a/.forgejo/workflows/build.yaml b/.forgejo/workflows/build.yaml index 5bb29ed..8ca489e 100644 --- a/.forgejo/workflows/build.yaml +++ b/.forgejo/workflows/build.yaml @@ -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