Skip to content

Import version from correct path #9

Import version from correct path

Import version from correct path #9

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", "5.1", "5.2"]
es-version: ["7.17.28", "8.18.2", "9.0.2"]
version: ["master"]
exclude:
- python-version: "3.13"
django-version: "4.2"
- python-version: "3.9"
django-version: "5.1"
- python-version: "3.9"
django-version: "5.2"
- version: "8.0"
es-version: "7.17.28"
- version: "master"
es-version: "7.17.28"
- version: "master"
es-version: "8.18.2"
steps:
- name: Install and Run Elasticsearch
uses: elastic/elastic-github-actions/elasticsearch@master
with:
stack-version: ${{ matrix.es-version }}
- uses: actions/checkout@v4
with:
ref: ${{ matrix.version }}
- 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 -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 }}-django-${{ 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