Skip to content

Bump version, test on Django 4.2 #15

Bump version, test on Django 4.2

Bump version, test on Django 4.2 #15

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: "3.x"
- name: Install Checkers
run: pip install black isort flake8
- name: black
run: black --check .
- name: isort
run: isort --check .
- name: flake8
run: flake8
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
django-version: ["3.2", "4.0", "4.1", "4.2"]
python-version: ["3.8", "3.9", "3.10", "3.11"]
include:
- django-version: "3.2"
python-version: "3.7"
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install Django and PZip
run: pip install "Django~=${{ matrix.django-version }}.0" "pzip>=0.9.9"
- name: Run Tests
run: python tests.py