aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/autogpts-ci.yml
blob: 0385470ac593e0af18cd6a3ab31a084945cff6b9 (plain)
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
62
63
64
65
66
67
68
name: AutoGPTs smoke test CI

on:
  workflow_dispatch:
  schedule:
    - cron: '0 8 * * *'
  push:
    branches: [ master, development, ci-test* ]
    paths:
      - '.github/workflows/autogpts-ci.yml'
      - 'autogpts/**'
      - 'benchmark/**'
      - 'run'
      - 'cli.py'
      - 'setup.py'
      - '!**/*.md'
  pull_request:
    branches: [ master, development, release-* ]
    paths:
      - '.github/workflows/autogpts-ci.yml'
      - 'autogpts/**'
      - 'benchmark/**'
      - 'run'
      - 'cli.py'
      - 'setup.py'
      - '!**/*.md'

jobs:
  run-tests:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        agent-name: [ autogpt, forge ]
      fail-fast: false
    timeout-minutes: 20
    env:
      min-python-version: '3.10'
    steps:
      - name: Checkout repository
        uses: actions/checkout@v3
        with:
          fetch-depth: 0
          submodules: true

      - name: Set up Python ${{ env.min-python-version }}
        uses: actions/setup-python@v2
        with:
          python-version: ${{ env.min-python-version }}

      - name: Install Poetry
        working-directory: ./autogpts/${{ matrix.agent-name }}/
        run: |
          curl -sSL https://install.python-poetry.org | python -

      - name: Run regression tests
        run: |
          ./run agent start ${{ matrix.agent-name }}
          cd autogpts/${{ matrix.agent-name }}
          poetry run agbenchmark --mock
          poetry run agbenchmark --test=WriteFile
        env:
          OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
          AGENT_NAME: ${{ matrix.agent-name }}
          HELICONE_API_KEY: ${{ secrets.HELICONE_API_KEY }}
          REQUESTS_CA_BUNDLE: /etc/ssl/certs/ca-certificates.crt
          HELICONE_CACHE_ENABLED: false
          HELICONE_PROPERTY_AGENT: ${{ matrix.agent-name }}
          REPORT_LOCATION: ${{ format('../../reports/{0}', matrix.agent-name) }}