Skip to content

Commit

Permalink
Install the latest point release of each Django and Python version
Browse files Browse the repository at this point in the history
  • Loading branch information
j4mie committed Jan 20, 2025
1 parent 3dd1843 commit d797d37
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,13 @@ jobs:
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
python-version: ${{ matrix.python }}.*
- name: Upgraded pip
run: pip install --upgrade pip
- name: Install dependencies
run: pip install -r test-requirements.txt
- name: Install Django
run: pip install -U django==${{ matrix.django }}
run: pip install -U django~=${{ matrix.django }}.0
- name: Run tests
run: python manage.py test
- name: Run black
Expand Down

0 comments on commit d797d37

Please sign in to comment.