Skip to content

Commit 58c1e2e

Browse files
committed
Try again
1 parent 7b60e99 commit 58c1e2e

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/testing.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff 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

.github/workflows/testing_fastapi.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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: |

0 commit comments

Comments
 (0)