Skip to content

Bump django-ckeditor from 6.7.1 to 6.7.2 #262

Bump django-ckeditor from 6.7.1 to 6.7.2

Bump django-ckeditor from 6.7.1 to 6.7.2 #262

Workflow file for this run

name: Django CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: ["3.10", "3.11", "3.12"]
django-version: ["4.2", "5.0", "5.1"]
env:
PYTHON_VERSION: ${{ matrix.python-version }}
DJANGO_VERSION: ${{ matrix.django-version }}
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip tox
- name: Run Tests for Python ${{ matrix.python-version }} and Django ${{ matrix.django-version }}
run: |
tox -e "py${PYTHON_VERSION/\./}-dj${DJANGO_VERSION/\./}"