We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6befb3f commit 19da14fCopy full SHA for 19da14f
.github/workflows/examples_check.yml
@@ -68,5 +68,15 @@ jobs:
68
- name: Execute notebooks and check for errors
69
run: |
70
source .venv/bin/activate
71
- bash ./.github/workflows/scripts/run_notebooks.sh ${{ matrix.notebook }}
+ 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
79
+ echo "Installed packages: "
80
+ pip list | grep -i grhub
81
82
0 commit comments