Skip to content

refactor(relations): put relations in a block #2923

refactor(relations): put relations in a block

refactor(relations): put relations in a block #2923

Workflow file for this run

#SPDX-FileCopyrightText: 2023 Birger Schacht
#SPDX-License-Identifier: MIT
name: Django Test
on:
pull_request:
env:
DJANGO_SETTINGS_MODULE: sample_project.settings
jobs:
setup:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
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@v2
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