This repository has been archived by the owner on Nov 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
64 lines (54 loc) · 1.54 KB
/
ci-backend.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
name: Backend CI
on:
pull_request:
branches:
- main
paths:
- "backend/**"
workflow_dispatch:
jobs:
build-and-test:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:latest
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: postgres
ports:
- 5432:5432
# needed because the postgres container does not provide a healthcheck
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.11
- name: Set up environment
run: cp .env.sample .env
- name: Create virtual environment
run: |
python -m venv venv
. venv/bin/activate
- name: Install dependencies
run: |
source venv/bin/activate
python -m pip install --upgrade pip
pip install -r backend/requirements.txt
- name: Run migrations (check for migration issues)
run: |
source venv/bin/activate
python backend/manage.py migrate
- name: Start the backend (checks if the server starts)
run: |
source venv/bin/activate
python backend/manage.py runserver &
sleep 10
- name: Run tests
run: |
source ../venv/bin/activate
pytest
working-directory: backend