Skip to content

Commit

Permalink
Update CI Matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
rajadain committed Dec 18, 2023
1 parent d1523ab commit 14d8884
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/continuous_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.6", "3.7", "3.8"]
python-version: ["3.8", "3.10", "3.12"]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

Expand Down
16 changes: 8 additions & 8 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
[tox]
envlist =
lint
py{36,37,38}-django22
py{36,37,38}-django30
py{36,37,38}-django31
py{36,37,38}-djangomaster
py{38,310}-django22
py{38,310,312}-django32
py{310,312}-django42
py{310,312}-djangomaster

[gh-actions]
python =
3.6: py36, lint
3.7: py37
3.8: py38
3.10: py310
3.12: py312

[testenv]
passenv = PYTHONPATH,DJANGO_SETTINGS_MODULE
deps =
django22: Django>=2.2,<2.3
django30: Django>=3.0,<3.1
django31: Django>=3.1,<3.2
django32: Django>=3.2,<3.3
django42: Django>=4.2,<4.3
djangomaster: https://github.com/django/django/archive/master.tar.gz
commands =
django-admin test --noinput
Expand Down

0 comments on commit 14d8884

Please sign in to comment.