Skip to content

Commit c29e828

Browse files
committed
Add debug step to check environment variables
1 parent d23bc4c commit c29e828

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/coverage-check.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,16 @@ jobs:
6161
- name: Install library
6262
run: poetry install --no-interaction --all-extras
6363
#----------------------------------------------
64+
# debug environment
65+
#----------------------------------------------
66+
- name: Debug environment variables
67+
run: |
68+
echo "Checking environment variables..."
69+
echo "DATABRICKS_SERVER_HOSTNAME: ${{ secrets.DATABRICKS_HOST }}"
70+
echo "DATABRICKS_HTTP_PATH: ${{ secrets.TEST_PECO_WAREHOUSE_HTTP_PATH }}"
71+
echo "DATABRICKS_TOKEN: ${{ secrets.DATABRICKS_TOKEN != '' && '***' || 'NOT_SET' }}"
72+
echo "DATABRICKS_USER: ${{ secrets.TEST_PECO_SP_ID }}"
73+
6474
# run test suite (quick subset)
6575
#----------------------------------------------
6676
- name: Run quick subset of tests with coverage

0 commit comments

Comments
 (0)