Skip to content

Add support for ES9 and drop unsupported dependencies #207

Add support for ES9 and drop unsupported dependencies

Add support for ES9 and drop unsupported dependencies #207

Workflow file for this run

name: CI
on:
push:
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
django-version: ["4.2", "4.2.8", "5.0", "5.1", "5.1.3", "5.2"]
es-version: ["9.0.2"]
exclude:
- django-version: "4.2"
python-version: "3.12"
- django-version: "4.2"
python-version: "3.13"
- django-version: "4.2.8"
python-version: "3.13"
- django-version: "5.0"
python-version: "3.9"
- django-version: "5.1"
python-version: "3.9"
- django-version: "5.1.3"
python-version: "3.9"
- django-version: "5.2"
python-version: "3.9"
steps:
- name: Install and Run Elasticsearch
uses: elastic/elastic-github-actions/elasticsearch@master
with:
stack-version: ${{ matrix.es-version }}
- uses: actions/checkout@v4
- name: Install Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Cache Pip Dependencies
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('requirements_test.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
python -m pip install "Django==${{ matrix.django-version }}"
python -m pip install -r requirements_test.txt
- name: Run tests with Python ${{ matrix.python-version }} and Django ${{ matrix.django-version }}
run: |
TOX_ENV=$(echo "py${{ matrix.python-version }}-dj${{ matrix.django-version }}" | tr -d .)
python -m tox -e $TOX_ENV -- --elasticsearch
python -m tox -e $TOX_ENV -- --elasticsearch --signal-processor celery
- name: Publish Coverage Report
uses: codecov/codecov-action@v3