Bump version, test on Django 4.2 #15
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] | |
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 |