Skip to content

Add amqp service

Add amqp service #4

Workflow file for this run

name: CI
on:
push:
branches: [dev]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python_version: ["3.9", "3.10", "3.11", "3.12"]
services:
rabbitmq:
image: rabbitmq:3.13.6
ports: ["5672:5672"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python_version }}
- name: Install Poetry
uses: snok/install-poetry@v1
with:
virtualenvs-create: true
virtualenvs-in-project: true
- name: Cache Poetry dependencies
uses: actions/cache@v3
with:
path: .venv
key: venv-${{ hashFiles('poetry.lock') }}
- name: Install dependencies
run: poetry install --all-extras
- name: Run tests
run: poetry run pytest