Skip to content

Update CHANGELOG

Update CHANGELOG #78

Workflow file for this run

name: Python / Django
on:
push:
branches:
- master
pull_request:
types: [opened, synchronize, reopened]
jobs:
format:
name: Check formatting
runs-on: ubuntu-latest
strategy:
matrix:
toxenv: [fmt,lint,mypy]
env:
TOXENV: ${{ matrix.toxenv }}
steps:
- name: Check out the repository
uses: actions/checkout@v2
- name: Set up Python 3.10
uses: actions/setup-python@v1
with:
python-version: "3.10"
- name: Install and run tox
run: |
pip install tox
tox
test:
name: Run tests
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.10", "3.11", "3.12"]
django: [32,42,50,main]
exclude:
- python: "3.11"
django: "32"
- python: "3.12"
django: "32"
- python: "3.12"
django: "42"
env:
TOXENV: py${{ matrix.python }}-django${{ matrix.django }}
steps:
- name: Check out the repository
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python }}
- name: Install and run tox
run: |
pip install tox
tox