We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b66d80a commit 64d4dc4Copy full SHA for 64d4dc4
1 file changed
.github/workflows/python-package.yml
@@ -13,6 +13,19 @@ jobs:
13
SOLVEBIO_API_HOST: ${{ secrets.QUARTZBIO_API_HOST }}
14
SOLVEBIO_API_KEY: ${{ secrets.QUARTZBIO_API_KEY }}
15
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
27
+ echo "QUARTZBIO_API_KEY starts with: ${${{ secrets.QUARTZBIO_API_KEY }}:0:4}..."
28
29
- name: Checkout repository
30
uses: actions/checkout@v4
31
- name: Setup Python ${{ matrix.python-version }}
0 commit comments