File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed
Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -333,13 +333,13 @@ jobs:
333333 ./scripts/ci_run.sh ${{ matrix.project_type }} 4
334334 - name : MyPy
335335 working-directory : ${{ env.WORKING_DIR }}
336- run : mypy .
336+ run : /venv/bin/ mypy .
337337 - name : ruff check
338338 working-directory : ${{ env.WORKING_DIR }}
339- run : ruff check .
339+ run : .venv/bin/ ruff check .
340340 - name : ruff format
341341 working-directory : ${{ env.WORKING_DIR }}
342- run : ruff format --check .
342+ run : .venv/bin/ ruff format --check .
343343 setuptools-test :
344344 strategy :
345345 fail-fast : false
@@ -366,11 +366,11 @@ jobs:
366366 working-directory : ${{ env.WORKING_DIR }}
367367 run : |
368368 git add .
369- pre-commit run --all-files
369+ .venv/bin/ pre-commit run --all-files
370370 - name : Test with pytest
371371 working-directory : ${{ env.WORKING_DIR }}
372372 if : matrix.project_type == 'application'
373- run : python -m pytest
373+ run : .venv/bin/ pytest
374374 pixi-linting :
375375 strategy :
376376 fail-fast : false
Original file line number Diff line number Diff line change @@ -308,7 +308,7 @@ jobs:
308308 - name : Compile Rust
309309 working-directory : ${{ env.WORKING_DIR }}
310310 run : |
311- .venv/bin/ maturin build
311+ uv run maturin develop
312312 - name : Pre-commit check
313313 working-directory : ${{ env.WORKING_DIR }}
314314 run : |
@@ -343,7 +343,7 @@ jobs:
343343 - name : Compile Rust
344344 working-directory : ${{ env.WORKING_DIR }}
345345 run : |
346- .venv/bin/maturin build
346+ .venv/bin/maturin develop
347347 - name : Pre-commit check
348348 working-directory : ${{ env.WORKING_DIR }}
349349 run : |
@@ -383,7 +383,7 @@ jobs:
383383 - name : Compile Rust
384384 working-directory : ${{ env.WORKING_DIR }}
385385 run : |
386- .venv/bin/maturin build
386+ .venv/bin/maturin develop
387387 - name : Pre-commit check
388388 working-directory : ${{ env.WORKING_DIR }}
389389 run : |
You can’t perform that action at this time.
0 commit comments