We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ce0432 commit d4c2f2aCopy full SHA for d4c2f2a
1 file changed
.github/workflows/deploy-apprunner.yml
@@ -56,8 +56,16 @@ jobs:
56
pip install -r requirements.txt
57
pip install pytest
58
59
+ # --- LANGKAH DEBUGGING BARU ---
60
+ - name: Debug API Key
61
+ run: |
62
+ KEY_VALUE="${{ secrets.TEST_API_KEY }}"
63
+ echo "API Key Length: ${#KEY_VALUE}"
64
+ echo "API Key First 5 Chars: ${KEY_VALUE:0:5}"
65
+ echo "API Key Last 5 Chars: ${KEY_VALUE: -5}"
66
+
67
- name: Run tests with pytest
- # PERBAIKAN: Menggunakan secret TEST_API_KEY yang berisi satu kunci valid
68
+ # Menggunakan secret TEST_API_KEY yang berisi satu kunci valid
69
env:
70
TEST_API_KEY: ${{ secrets.TEST_API_KEY }}
71
run: pytest
0 commit comments