-
Notifications
You must be signed in to change notification settings - Fork 200
158 lines (146 loc) · 4.98 KB
/
ci.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
---
name: Django Rest Framework Gis CI Build
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
name: Python==${{ matrix.env.python }} | ${{ matrix.env.TOXENV }}
runs-on: ubuntu-20.04
services:
postgres:
image: postgis/postgis:13-3
env:
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
POSTGRES_DB: django_restframework_gis
ports:
- 5432:5432
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
strategy:
fail-fast: false
matrix:
env:
- python: 3.6
TOXENV: py36-django22-djangorestframework310
- python: 3.7
TOXENV: py37-django22-djangorestframework310
- python: 3.8
TOXENV: py38-django22-djangorestframework310
- python: 3.9
TOXENV: py39-django22-djangorestframework310
- python: 3.6
TOXENV: py36-django22-djangorestframework312
- python: 3.7
TOXENV: py37-django22-djangorestframework312
- python: 3.8
TOXENV: py38-django22-djangorestframework312
- python: 3.9
TOXENV: py39-django22-djangorestframework312
- python: 3.6
TOXENV: py36-django30-djangorestframework312
- python: 3.7
TOXENV: py37-django30-djangorestframework312
- python: 3.8
TOXENV: py38-django30-djangorestframework312
- python: 3.9
TOXENV: py39-django30-djangorestframework312
- python: 3.6
TOXENV: py36-django31-djangorestframework312
- python: 3.7
TOXENV: py37-django31-djangorestframework312
- python: 3.8
TOXENV: py38-django31-djangorestframework312
- python: 3.9
TOXENV: py39-django31-djangorestframework312
- python: 3.7
TOXENV: py37-django32-djangorestframework312
- python: 3.8
TOXENV: py38-django32-djangorestframework312
- python: 3.9
TOXENV: py39-django32-djangorestframework312
- python: 3.8
TOXENV: py38-django40-djangorestframework313
- python: 3.9
TOXENV: py39-django40-djangorestframework313
- python: 3.8
TOXENV: py38-django41-djangorestframework313
- python: 3.9
TOXENV: py39-django41-djangorestframework313
- python: 3.10
TOXENV: py39-django41-djangorestframework313
- python: 3.11
TOXENV: py39-django41-djangorestframework313
- python: 3.8
TOXENV: py38-django42-djangorestframework313
- python: 3.9
TOXENV: py39-django42-djangorestframework313
- python: 3.10
TOXENV: py310-django42-djangorestframework313
- python: 3.11
TOXENV: py311-django42-djangorestframework313
- python: 3.8
TOXENV: py38-django41-djangorestframework314
- python: 3.9
TOXENV: py39-django41-djangorestframework314
- python: 3.10
TOXENV: py39-django41-djangorestframework314
- python: 3.11
TOXENV: py39-django41-djangorestframework314
- python: 3.8
TOXENV: py38-django42-djangorestframework314
- python: 3.9
TOXENV: py39-django42-djangorestframework314
- python: 3.10
TOXENV: py310-django42-djangorestframework314
- python: 3.11
TOXENV: py311-django42-djangorestframework314
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Set up Python ${{ matrix.env.python }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.env.python }}
- name: Install system packages
run: |
sudo apt-get update
sudo apt-get install binutils libproj-dev gdal-bin -y
- name: Install python dependencies
run: |
pip install -U pip wheel setuptools
pip install -U -r requirements-test.txt
pip install tox docutils pygments twine
- name: Tests
run: |
tox -e ${{ matrix.env.TOXENV }}
env:
POSTGRES_HOST: localhost
- name: Upload Coverage
run: coveralls --service=github
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COVERALLS_FLAG_NAME: |
python-${{ matrix.env.env }}
COVERALLS_PARALLEL: true
- name: QA checks
run: |
pip install "importlib-metadata<5.0" # remove when flake8 is upgraded
./run-qa-checks
coveralls:
name: Finish Coveralls
needs: build
runs-on: ubuntu-latest
container: python:3-slim
steps:
- name: Finished
run: |
pip3 install --upgrade coveralls
coveralls --finish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}