Skip to content

broker: allow to send with exchange name #42

broker: allow to send with exchange name

broker: allow to send with exchange name #42

Workflow file for this run

name: Tests
on: [push]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14.0-rc.3"]
steps:
- uses: actions/checkout@v5
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
python-version: ${{ matrix.python-version }}
enable-cache: true
- name: Lint with ruff
run: uvx ruff check microagent
- name: Lint with mypy
run: uvx mypy microagent
- name: Testing
run: uvx --with .[dev] pytest tests
check:
if: always()
needs:
- tests
runs-on: ubuntu-latest
steps:
- name: Decide whether the needed jobs succeeded or failed
uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}