Skip to content

Commit a684a36

Browse files
authored
Merge pull request #11 from DevanshuNEU/ci/issue-10-github-secrets
ci: add GitHub Secrets to workflow for integration tests
2 parents 1451fc7 + e4fc021 commit a684a36

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,12 @@ jobs:
3232
env:
3333
DEBUG: "true"
3434
API_KEY: "test-secret-key"
35+
SUPABASE_URL: ${{ secrets.SUPABASE_URL }}
36+
SUPABASE_ANON_KEY: ${{ secrets.SUPABASE_ANON_KEY }}
37+
SUPABASE_JWT_SECRET: ${{ secrets.SUPABASE_JWT_SECRET }}
38+
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
39+
PINECONE_API_KEY: ${{ secrets.PINECONE_API_KEY }}
40+
PINECONE_INDEX_NAME: "codeintel-test"
3541
run: |
3642
pytest tests/ -v --cov=services --cov-report=term-missing
3743

0 commit comments

Comments
 (0)