Bump pillow from 6.2.2 to 10.0.1 in /example #176
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"] | |
django-version: ["3.2", "4.1", "4.2"] | |
es-dsl-version: ["6.4", "7.4"] | |
es-version: ["8.10.2"] | |
exclude: | |
- python-version: "3.11" | |
django-version: "3.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-dsl==${{ matrix.es-dsl-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-dsl-version }} | |
run: | | |
TOX_ENV=$(echo "py${{ matrix.python-version }}-django-${{ matrix.django-version }}-es${{ matrix.es-dsl-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 |