Skip to content

Commit 19da14f

Browse files
added debuging steps to GH workflow
1 parent 6befb3f commit 19da14f

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/examples_check.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,5 +68,15 @@ jobs:
6868
- name: Execute notebooks and check for errors
6969
run: |
7070
source .venv/bin/activate
71-
bash ./.github/workflows/scripts/run_notebooks.sh ${{ matrix.notebook }}
71+
bash ./.github/workflows/scripts/run_notebooks.sh ${{ matrix.notebook }} || exit 0
72+
- name: Check init file (debug)
73+
run: |
74+
echo "Guardrails Hub Init File Contents: "
75+
cat /home/runner/work/guardrails/guardrails/.venv/lib/python3.11/site-packages/guardrails/hub/__init__.py
76+
77+
- name: Check installed
78+
run: |
79+
echo "Installed packages: "
80+
pip list | grep -i grhub
81+
7282

0 commit comments

Comments
 (0)