-
Notifications
You must be signed in to change notification settings - Fork 16
113 lines (105 loc) · 3.01 KB
/
django.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
name: Django CI
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
max-parallel: 3
matrix:
python-version: ['3.8', '3.9']
services:
postgres:
image: postgres:9.6
env:
POSTGRES_USER: django
POSTGRES_PASSWORD: django
POSTGRES_DB: capone_test_db
# Set health checks to make Workflow wait until Postgres is ready
# before executing next step.
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
# Maps tcp port 5432 on service container to the host
- 5432:5432
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m venv venv
source venv/bin/activate
pip install -r requirements-setup.txt
- name: Test with tox
run: |
source venv/bin/activate
tox -vv
env:
POSTGRES_HOST: localhost
POSTGRES_PORT: 5432
test36:
runs-on: ubuntu-20.04
services:
postgres:
image: postgres:9.6
env:
POSTGRES_USER: django
POSTGRES_PASSWORD: django
POSTGRES_DB: capone_test_db
# Set health checks to make Workflow wait until Postgres is ready
# before executing next step.
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
# Maps tcp port 5432 on service container to the host
- 5432:5432
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
# Setup doesn't work on 3.6 for Baya, so we install under 3.10 and use Tox to install 3.6 in a virtualenv.
# This syntax is new as of setup-python@4 that enables multiple versions of Python to be installed.
python-version: |
3.6
3.10
- name: Install dependencies
run: |
python -m venv venv
source venv/bin/activate
pip install -r requirements-setup.txt
- name: Test with tox
run: |
source venv/bin/activate
tox -vv -e py36-django1.11,py36-django2.2
env:
POSTGRES_HOST: localhost
POSTGRES_PORT: 5432
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install dependencies
run: |
python -m venv venv
source venv/bin/activate
pip install -r requirements-setup.txt
- name: lint
run: |
source venv/bin/activate
tox -vv -e flake8
env:
POSTGRES_HOST: localhost
POSTGRES_PORT: 5432