Skip to content

Commit 43faff5

Browse files
committed
fix: Add debug steps to CI/CD pipeline for PATH and venv contents
1 parent abef8aa commit 43faff5

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/build-and-test.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,15 @@ jobs:
2222
- name: Create virtual environment
2323
run: uv venv
2424
- name: Add virtual environment to PATH
25-
run: echo "::$HOME/work/monitoring-kubernetes/.venv/bin" | tee -a $GITHUB_PATH
25+
run: echo "$HOME/work/monitoring-kubernetes/.venv/bin" >> $GITHUB_PATH
26+
- name: Debug PATH after adding venv
27+
run: echo "PATH is: $PATH"
2628
- name: Install dependencies
2729
run: uv pip install .
2830
- name: Install dev dependencies
2931
run: uv pip install ".[dev]"
32+
- name: List .venv/bin contents
33+
run: ls -l $HOME/work/monitoring-kubernetes/.venv/bin
3034
- name: Run Black
3135
run: black . --check
3236
- name: Run Ruff

0 commit comments

Comments
 (0)