Skip to content

Commit e65ab17

Browse files
authored
List all installed libraries in CI (#494)
1 parent 3055705 commit e65ab17

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ jobs:
3535

3636
- name: List installed libraries
3737
run: |
38-
pixi run -e ${{ matrix.environment }} pip list
38+
pixi install --environment ${{ matrix.environment }}
39+
pixi list --environment ${{ matrix.environment }}
3940
4041
- name: Running Tests
4142
run: |

.github/workflows/typing.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ jobs:
3030
pixi-version: v0.41.4
3131
- name: List installed libraries
3232
run: |
33-
pixi run -e test pip list
33+
pixi install --environment test
34+
pixi list --environment test
3435
- name: Type check
3536
run: |
3637
pixi run -e test run-mypy

0 commit comments

Comments
 (0)