Skip to content

Bump django from 4.2.7 to 4.2.10 #47

Bump django from 4.2.7 to 4.2.10

Bump django from 4.2.7 to 4.2.10 #47

Workflow file for this run

name: Run GenericSite test suite
on:
pull_request:
workflow_call:
workflow_dispatch:
jobs:
run_tests:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- name: Check out the code
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install test dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
pip install build tox tox-gh-actions
- name: Run the test suite
run: tox