-
Notifications
You must be signed in to change notification settings - Fork 0
34 lines (33 loc) · 925 Bytes
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: Test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9, "3.10", "3.11", "3.12" ]
django-version: [">=3.2,<4", ">=4,<5"]
services:
postgres:
image: postgres:16
env:
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: pip install -e .[dev]
- run: pip install "django${{ matrix.django-version }}"
- env:
JSONDATAFERRET_DATABASE_NAME: postgres
JSONDATAFERRET_DATABASE_USER: postgres
JSONDATAFERRET_DATABASE_PASSWORD: postgres
run: python manage.py test