-
Notifications
You must be signed in to change notification settings - Fork 235
61 lines (53 loc) · 1.93 KB
/
cli-commands-tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
name: cli commands tests
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
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: |
APP_NAME="gh-cli-$(shuf -i 1000-9999 -n 1)"
cd examples/baby_name_generator
agenta init --app_name $APP_NAME --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