Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Workflow for cli commands #1660

Merged
merged 4 commits into from
May 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions .github/workflows/cli-commands-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,10 @@ jobs:

- name: Create .env file
run: |
echo "OPEN_API_KEY=${{ secrets.OPEN_API_KEY }}" > .env
echo "OPENAI_API_KEY=${{ secrets.NEXT_PUBLIC_OPENAI_API_KEY }}" > .env
working-directory: examples/baby_name_generator

- name: Run agenta init
env:
BACKEND_HOST: ${{ secrets.BACKEND_HOST }}
run: |
APP_NAME="gh-cli-$(shuf -i 1000-9999 -n 1)"
cd examples/baby_name_generator
Expand All @@ -43,17 +41,13 @@ jobs:
continue-on-error: false

- name: Run agenta variant serve
env:
BACKEND_HOST: ${{ secrets.BACKEND_HOST }}
run: |
cd examples/baby_name_generator
agenta variant serve --file_name app.py
shell: bash
continue-on-error: false

- name: Run agenta variant serve with overwrite
env:
BACKEND_HOST: ${{ secrets.BACKEND_HOST }}
run: |
cd examples/baby_name_generator
agenta variant serve --file_name app.py --overwrite
Expand Down
Loading