Skip to content

Commit a3ad5e5

Browse files
committed
Run the tests in the maturin action
1 parent ce2b1e2 commit a3ad5e5

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/run-tests.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,13 @@ jobs:
2020
id: setup-python
2121
with:
2222
python-version: 3.12
23-
- uses: PyO3/maturin-action@v1
23+
- run: python -m venv .venv
24+
- name: Build wheels
25+
uses: PyO3/maturin-action@v1
26+
with:
27+
command: develop
28+
manylinux: auto
2429
- name: Run tests
2530
run: |
26-
python -m venv .venv
27-
. .venv/bin/activate
28-
maturin develop
31+
source .venv/bin/activate
2932
cargo test --all-features --verbose

0 commit comments

Comments
 (0)