ci(test): update testing matrix to include Python 3.11

This commit is contained in:
Mike 2023-10-30 09:14:09 -07:00
parent 100a72df96
commit 1e4d5742ad

View file

@ -1,14 +1,14 @@
name: test
'on': [push, pull_request, workflow_dispatch]
"on": [push, pull_request, workflow_dispatch]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10']
django-version: ['3.2', '4.0', '4.1']
python-version: ["3.8", "3.9", "3.10", "3.11"]
django-version: ["3.2", "4.0", "4.1"]
steps:
- uses: actions/checkout@v4