Skip to content

Commit

Permalink
add openai key
Browse files Browse the repository at this point in the history
  • Loading branch information
hyusap committed Feb 29, 2024
1 parent 9abffae commit 588464a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/run_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ jobs:
- name: Syncify Client
run: |
python scripts/syncronizer.py
- name: Start Database
run: |
cd api/local
docker compose up --wait
cd ../..
- name: Start Server
run: |
cd api
Expand All @@ -25,8 +30,9 @@ jobs:
sleep 5
cd ..
env:
DATABASE_TYPE: sqlite
CONNECTION_URI: sqlite:///api.db
DATABASE_TYPE: postgres
CONNECTION_URI: postgresql://testuser:testpwd@localhost:5432/honcho
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
- name: Run Tests
run: |
cd sdk
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ jobs:
env:
DATABASE_TYPE: postgres
CONNECTION_URI: postgresql://testuser:testpwd@localhost:5432/honcho
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
- name: Run Tests
run: |
cd sdk
Expand Down

0 comments on commit 588464a

Please sign in to comment.