Skip to content

Commit

Permalink
chore(ci): add Python 3.11 and Django 4.1 to CI (#143)
Browse files Browse the repository at this point in the history
Just some housekeeping and local dev tweaks.
  • Loading branch information
crccheck authored Nov 1, 2022
1 parent 700dd9b commit 10e4743
Show file tree
Hide file tree
Showing 3 changed files with 102 additions and 88 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@ jobs:
with:
matrix: |
python-version {3.7}, django-version {2.0,2.1,2.2,3.0,3.1}
python-version {3.8}, django-version {2.2,3.0,3.1,3.2,4.0}
python-version {3.9}, django-version {2.2,3.0,3.1,3.2,4.0}
python-version {3.10}, django-version {3.2,4.0}
python-version {3.8}, django-version {2.2,3.0,3.1,3.2,4.0,4.1}
python-version {3.9}, django-version {2.2,3.0,3.1,3.2,4.0,4.1}
python-version {3.10}, django-version {3.2,4.0,4.1}
python-version {3.11}, django-version {3.2,4.0,4.1}
- name: Set matrix output variable
id: set_matrix
run: |
Expand Down Expand Up @@ -47,7 +48,7 @@ jobs:
run: |
rm -rf django_object_actions
pip install --force-reinstall dist/*.whl
- run: pip install "Django~=${{ matrix.django-version }}"
- run: pip install "Django==${{ matrix.django-version }}.*"
- run: make test

lint:
Expand Down
Loading

0 comments on commit 10e4743

Please sign in to comment.