Skip to content

Bump django from 5.1 to 5.1.3 #72

Bump django from 5.1 to 5.1.3

Bump django from 5.1 to 5.1.3 #72

Workflow file for this run

name: tests
on:
push:
paths-ignore:
- '**/README.md'
jobs:
test:
runs-on: ubuntu-latest
services:
postgres:
image: postgres
env:
POSTGRES_USER: django_dx
POSTGRES_PASSWORD: django_dx
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
ports:
- 5432:5432
redis:
image: redis
options: --health-cmd "redis-cli ping" --health-interval 10s --health-timeout 5s --health-retries 5
ports:
- 6379:6379
steps:
- uses: actions/checkout@v4
- name: Install poetry
run: |
curl -sSL https://install.python-poetry.org | python - --version 1.8.3
echo "PATH=${HOME}/.local/bin:${PATH}" >> $GITHUB_ENV
- uses: actions/setup-python@v5
with:
cache: 'poetry'
- run: poetry install
- name: Run Tests
run: poetry run pytest