Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 8 additions & 6 deletions .github/workflows/django-single-session-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
steps:
- name: Set up Python
uses: actions/setup-python@v4
Expand All @@ -29,14 +29,16 @@ jobs:
- run: "mv testproject_temp/* testproject/"
- run: pip install -r requirements.txt
working-directory: 'testproject'
- run: python manage.py test --settings=docs.source.settings
- run: 'coverage run --source="." python manage.py test --settings=docs.source.settings'
working-directory: 'testproject'
- name: Coveralls
uses: coverallsapp/github-action@v2

no-makemigrations:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
steps:
- name: Set up Python
uses: actions/setup-python@v4
Expand All @@ -60,7 +62,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
locale: [nl]
steps:
- name: Set up Python
Expand Down Expand Up @@ -88,7 +90,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
steps:
- name: Set up Python
uses: actions/setup-python@v4
Expand All @@ -115,7 +117,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
steps:
- name: checkout code
uses: actions/checkout@v2.3.1
Expand Down
Loading