This commit is contained in:
Scott Lessans 2025-08-05 11:56:46 -07:00
parent bcbabf7b93
commit 2fc90b29ef

View file

@ -31,10 +31,10 @@ runs:
run: |
python -m pip install --upgrade pip
- name: Install build/test deps
- name: Install test deps
shell: bash
run: |
python -m pip install maturin pytest
python -m pip install pytest
- name: Check rustfmt
shell: bash
@ -56,10 +56,10 @@ runs:
run: |
cargo test --doc
- name: Build Python extension (maturin develop)
- name: Build and install Python package
shell: bash
run: |
maturin develop --release
pip install .
- name: Run pytest
shell: bash