Skip to content

Bump django from 5.0.7 to 5.0.9 #90

Bump django from 5.0.7 to 5.0.9

Bump django from 5.0.7 to 5.0.9 #90

Workflow file for this run

name: Django Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
environment: test
strategy:
max-parallel: 4
matrix:
python-version: [3.11]
steps:
- uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry
- uses: actions/setup-python@v5
with:
python-version: 3.11
cache: poetry
- run: poetry install
- name: Run Tests
run: |
poetry run python manage.py compress
poetry run pytest