this repo has no description

fix: debug pixi environment in CI

+10 -2
+10 -2
.tangled/workflows/build.yml
··· 26 26 27 27 steps: 28 28 - name: "Install dependencies" 29 - command: "pixi install" 29 + command: | 30 + echo "=== Installing pixi dependencies ===" 31 + pixi install 32 + echo "=== Checking pixi env ===" 33 + ls -la .pixi/envs/default/bin/ | head -20 34 + echo "=== PATH ===" 35 + echo $PATH 30 36 31 37 - name: "Run tests" 32 - command: "pixi run test" 38 + command: | 39 + echo "=== Running tests ===" 40 + .pixi/envs/default/bin/pytest -v 33 41 34 42 - name: "Run linters" 35 43 command: "pixi run pre-commit-run"