forked from City-of-Helsinki/respa
-
Notifications
You must be signed in to change notification settings - Fork 5
71 lines (68 loc) · 1.89 KB
/
respa.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
name: Respa CI
on:
push:
branches:
- master
- develop
pull_request:
branches:
- '**'
jobs:
build:
runs-on: [ ubuntu-20.04 ]
services:
postgres:
image: postgis/postgis:11-2.5
env:
POSTGRES_USER: respa
POSTGRES_PASSWORD: respa
POSTGRES_DB: respa
DEBUG: true
SECRET_KEY: respa_secret
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
strategy:
matrix:
python-version: [ "3.8", "3.9" ]
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install gettext python-dev libpq-dev gdal-bin -y
psql -h localhost -U respa -d template1 -c "create extension hstore;"
psql -h localhost -U respa -d respa -c "create extension hstore;"
env:
PGPASSWORD: respa
- name: Install requirements
run: |
python3 -m pip install --upgrade pip
pip install -r requirements.txt
- name: Apply migrations
env:
DATABASE_URL: postgis://respa:respa@localhost/respa
DEBUG: true
SECRET_KEY: respa_secret
run: |
python3 manage.py migrate
- name: Compile translations
run: |
python3 manage.py compilemessages --locale en --locale fi --locale sv
- name: Run tests
env:
DATABASE_URL: postgis://respa:respa@localhost/respa
DEBUG: true
SECRET_KEY: respa_secret
run: |
pytest --cov . --doctest-modules
- name: Codecov
uses: codecov/[email protected]