Skip to content

WebVoyager Baseline Agent & Benchmark #2414

WebVoyager Baseline Agent & Benchmark

WebVoyager Baseline Agent & Benchmark #2414

Workflow file for this run

name: test
on:
pull_request:
types: [opened, reopened, synchronize]
paths:
- "agential/**"
- "tests/**"
- ".github/workflows/test.yml"
push:
branches:
- main
paths:
- "agential/**"
- "tests/**"
- ".github/workflows/test.yml"
env:
POETRY_VERSION: "1.8.2"
SUPPORTED_PYTHON_VERSIONS: "3.11"
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry ${{ env.POETRY_VERSION }}
run: |
python -m pip install pipx
pipx install poetry==${{ env.POETRY_VERSION }}
poetry --version
- name: Check Poetry File
shell: bash
run: |
poetry check
- name: Check lock file
shell: bash
run: |
poetry check --lock
- name: Install Dependencies
run: |
poetry install --with dev
- name: Run Tests
run: |
make test
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: false
verbose: true