Skip to content

Commit 64d4dc4

Browse files
author
Tatjana Damnjanović
committed
check envs
1 parent b66d80a commit 64d4dc4

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

.github/workflows/python-package.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,19 @@ jobs:
1313
SOLVEBIO_API_HOST: ${{ secrets.QUARTZBIO_API_HOST }}
1414
SOLVEBIO_API_KEY: ${{ secrets.QUARTZBIO_API_KEY }}
1515
steps:
16+
- name: Debug environment variables
17+
run: |
18+
if [ -z "${{ secrets.QUARTZBIO_API_HOST }}" ]; then
19+
echo "QUARTZBIO_API_HOST is not set."
20+
else
21+
echo "QUARTZBIO_API_HOST starts with: ${${{ secrets.QUARTZBIO_API_HOST }}:0:10}..."
22+
fi
23+
24+
if [ -z "${{ secrets.QUARTZBIO_API_KEY }}" ]; then
25+
echo "QUARTZBIO_API_KEY is not set."
26+
else
27+
echo "QUARTZBIO_API_KEY starts with: ${${{ secrets.QUARTZBIO_API_KEY }}:0:4}..."
28+
fi
1629
- name: Checkout repository
1730
uses: actions/checkout@v4
1831
- name: Setup Python ${{ matrix.python-version }}

0 commit comments

Comments
 (0)