Skip to content

fix: 🐛 Allow serialization of django-serializable fields (such as… #25

fix: 🐛 Allow serialization of django-serializable fields (such as…

fix: 🐛 Allow serialization of django-serializable fields (such as… #25

Workflow file for this run

name: Test Python Package
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.11, 3.12, 3.13]
meili-version: [1.7, 1.8, 1.9, "1.10", 1.11]
services:
meili:
image: getmeili/meilisearch:v${{ matrix.meili-version }}
ports:
- 7700:7700
env:
MEILI_HTTP_ADDR: meili:7700
MEILI_LOG_LEVEL: INFO
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Test package
run: ./manage.py test