Workflow for cli commands #14
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Agenta CLI Workflow | |
on: | |
pull_request: | |
# paths: | |
# - "agenta-backend/**" | |
# - "agenta-cli/**" | |
jobs: | |
run-agenta-cli: | |
runs-on: ubuntu-latest | |
environment: oss | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Set up python | |
id: setup-python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip setuptools | |
pip install poetry | |
cd agenta-cli | |
poetry install --no-interaction --no-root | |
pip install -e . | |
- name: Create .env file | |
run: | | |
echo "OPEN_API_KEY=${{ secrets.OPEN_API_KEY }}" > .env | |
working-directory: examples/baby_name_generator | |
- name: Run agenta init | |
env: | |
BACKEND_HOST: ${{ secrets.BACKEND_HOST }} | |
run: | | |
cd examples/baby_name_generator | |
agenta init --app_name woooo2 --backend_host ${{ secrets.BACKEND_HOST }} | |
shell: bash | |
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 | |
shell: bash | |
continue-on-error: false | |