Skip to content

Commit

Permalink
fix ci file
Browse files Browse the repository at this point in the history
  • Loading branch information
berkingurcan committed Oct 22, 2024
1 parent 4d5b2c1 commit e7c87b4
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,14 @@ jobs:
pip install pytest pytest-asyncio httpx
- name: Set environment variables
run: echo "SHARED_SECRET=${{ secrets.SHARED_SECRET }}" >> $GITHUB_ENV
env:
SHARED_SECRET: ${{ secrets.SHARED_SECRET }}
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
MONGO_HOST: ${{ secrets.MONGO_HOST }}
run: |
echo "SHARED_SECRET=${SHARED_SECRET}" >> $GITHUB_ENV
echo "OPENAI_API_KEY=${OPENAI_API_KEY}" >> $GITHUB_ENV
echo "MONGO_HOST=${DISCORD_TOKEN}" >> $GITHUB_ENV
- name: Run Smoke Tests
run: pytest tests/smoke/test_startup.py tests/smoke/test_auth_middleware.py tests/smoke/test_scheduler.py -m smoke
Expand Down

0 comments on commit e7c87b4

Please sign in to comment.