Skip to content

Commit

Permalink
Added Django 5.1 to test matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
selwin committed Nov 22, 2024
1 parent ac9aa06 commit 64ded10
Showing 1 changed file with 16 additions and 15 deletions.
31 changes: 16 additions & 15 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,33 +16,34 @@ jobs:
- uses: chartboost/ruff-action@v1
with:
version: 0.4.8
args: 'format --check'
args: "format --check"

build:
runs-on: ubuntu-latest
name: Python${{ matrix.python-version }}/Django${{ matrix.django-version }}
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
django-version: ["4.2", "5.0"]
django-version: ["4.2", "5.0", "5.1"]
exclude:
- python-version: "3.9"
django-version: "5.0"

- python-version: "3.9"
django-version: "5.1"

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4

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

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install "Django~=${{ matrix.django-version }}.0"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install "Django~=${{ matrix.django-version }}.0"
- name: Run Test
run: |
`which django-admin` test post_office --settings=post_office.test_settings --pythonpath=.
- name: Run Test
run: |
`which django-admin` test post_office --settings=post_office.test_settings --pythonpath=.

0 comments on commit 64ded10

Please sign in to comment.