Skip to content

Fixes compatibility with Elasticsearch 8.18.1 #196

Fixes compatibility with Elasticsearch 8.18.1

Fixes compatibility with Elasticsearch 8.18.1 #196

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.8", "3.9", "3.10", "3.11", "3.12", "3.13" ]
django-version: [ "3.2", "4.1", "4.2", "5.0", "5.1", "5.2" ]
es-py-version: [ "6.4", "7.4", "8.18.1"]
exclude:
- python-version: "3.11"
django-version: "3.2"
- python-version: "3.12"
django-version: "3.2"
- python-version: "3.13"
django-version: "3.2"
- es-py-version: "6.4"
es-version: "8.10.2"

Check failure on line 28 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 28, Col: 13): Matrix exclude key 'es-version' does not match any key within the matrix .github/workflows/ci.yml (Line: 30, Col: 13): Matrix exclude key 'es-version' does not match any key within the matrix
- es-py-version: "7.4"
es-version: "8.10.2"
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@v4
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 "elasticsearch==${{ matrix.es-py-version }}"
python -m pip install -r requirements_test.txt
- name: Run tests with Python ${{ matrix.python-version }} and Django ${{ matrix.django-version }} and elasticsearch-dsl-py ${{ matrix.es-py-version }}
run: |
TOX_ENV=$(echo "py${{ matrix.python-version }}-django-${{ matrix.django-version }}-es${{ matrix.es-py-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