-
Notifications
You must be signed in to change notification settings - Fork 3
50 lines (43 loc) · 1.22 KB
/
django-tests.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#SPDX-FileCopyrightText: 2023 Birger Schacht
#SPDX-License-Identifier: MIT
name: Django Test
on:
pull_request:
env:
DJANGO_SETTINGS_MODULE: sample_project.settings_tests
jobs:
setup:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade pip
run: |
python -m pip install --upgrade pip
- name: Install poetry and setuptools
run: |
pip install poetry setuptools
- name: Configure poetry
run: |
poetry config virtualenvs.in-project true
- name: Cache the virtualenv
uses: actions/cache@v4
with:
path: ./.venv
key: ${{ runner.os }}-py-${{ matrix.python-version }}-venv-${{ hashFiles('**/poetry.lock') }}
- name: Install dependencies
run: |
poetry lock
poetry install --with tests
- name: Make migrations
run: poetry run ./manage.py makemigrations
- name: Migrate
run: poetry run ./manage.py migrate
- name: Test
run: poetry run ./manage.py test