Skip to content

Move image rendering to renderers module #11

Move image rendering to renderers module

Move image rendering to renderers module #11

Workflow file for this run

name: Django CI
on: [push, pull_request]
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"]
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: |
sudo apt-get install -y librrd-dev
python -m pip install --upgrade pip
pip install Django==${{ matrix.django-version }}
pip install -e ".[dev]"
- name: Run Tests
run: |
pytest