tangled
alpha
login
or
join now
nandi.latha.org
/
pixi-skills
0
fork
atom
this repo has no description
0
fork
atom
overview
issues
pulls
pipelines
fix: debug pixi environment in CI
nandi
3 weeks ago
067bb7db
e53029ad
0/1
build.yml
failed
3s
+10
-2
1 changed file
expand all
collapse all
unified
split
.tangled
workflows
build.yml
+10
-2
.tangled/workflows/build.yml
···
26
26
27
27
steps:
28
28
- name: "Install dependencies"
29
29
-
command: "pixi install"
29
29
+
command: |
30
30
+
echo "=== Installing pixi dependencies ==="
31
31
+
pixi install
32
32
+
echo "=== Checking pixi env ==="
33
33
+
ls -la .pixi/envs/default/bin/ | head -20
34
34
+
echo "=== PATH ==="
35
35
+
echo $PATH
30
36
31
37
- name: "Run tests"
32
32
-
command: "pixi run test"
38
38
+
command: |
39
39
+
echo "=== Running tests ==="
40
40
+
.pixi/envs/default/bin/pytest -v
33
41
34
42
- name: "Run linters"
35
43
command: "pixi run pre-commit-run"