Skip to content

Bump agency-swarm from 0.4.2 to 0.4.4 (#218) #901

Bump agency-swarm from 0.4.2 to 0.4.4 (#218)

Bump agency-swarm from 0.4.2 to 0.4.4 (#218) #901

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
types: [opened, synchronize]
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.13]
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
- run: poetry install --with dev
- run: poetry run pytest --cov=backend --cov-report=xml
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}