Skip to content

Explicitly configure pika implementation #10

Explicitly configure pika implementation

Explicitly configure pika implementation #10

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
services:
rabbitmq:
image: rabbitmq
env:
RABBITMQ_DEFAULT_USER: guest
RABBITMQ_DEFAULT_PASS: guest
ports:
- 5672:5672
options: >-
--health-cmd "rabbitmq-diagnostics -q ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
- name: Set up Python
run: uv python install 3.13
- name: Install dependencies
run: uv sync --all-groups
- name: Check formatting
run: uv run ruff format --check
- name: Run ruff linting
run: uv run ruff check
- name: Run pyright
run: uv run pyright
- name: Run tests
run: uv run pytest