Skip to content

Mentioned ScyllaDB support in the docs (#173) #71

Mentioned ScyllaDB support in the docs (#173)

Mentioned ScyllaDB support in the docs (#173) #71

Workflow file for this run

name: Django Cassandra Engine
on:
push:
branches:
- master
pull_request:
types: [opened, synchronize, reopened]
jobs:
format:
name: Check formatting
runs-on: ubuntu-latest
strategy:
matrix:
toxenv: [fmt,lint]
env:
TOXENV: ${{ matrix.toxenv }}
steps:
- name: Check out the repository
uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install and run tox
run: |
pip install -U pip
pip install tox
tox
test:
name: Run tests
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12', '3.13']
django-version: ['42', '50', '51', '52']
env:
TOXENV: py${{ matrix.python-version }}-django${{ matrix.django-version }}
services:
cassandra:
image: scylladb/scylla:6.2
ports:
- 9042:9042
steps:
- name: Check out the repository
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install and run tox
run: |
pip install -U pip
pip install tox
tox