-
-
Notifications
You must be signed in to change notification settings - Fork 216
157 lines (147 loc) · 5.04 KB
/
ci.yml
File metadata and controls
157 lines (147 loc) · 5.04 KB
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
---
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-24.04
services:
postgres:
image: postgis/postgis:17-3.5-alpine
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:
# DRF 3.14
- python: "3.9"
TOXENV: py39-django42-djangorestframework314
- python: "3.10"
TOXENV: py310-django42-djangorestframework314
- python: "3.11"
TOXENV: py311-django42-djangorestframework314
# DRF 3.15
- python: "3.10"
TOXENV: py310-django50-djangorestframework315
- python: "3.11"
TOXENV: py311-django50-djangorestframework315
- python: "3.12"
TOXENV: py312-django50-djangorestframework315
- python: "3.13"
TOXENV: py313-django50-djangorestframework315
- python: "3.10"
TOXENV: py310-django51-djangorestframework315
- python: "3.11"
TOXENV: py311-django51-djangorestframework315
- python: "3.12"
TOXENV: py312-django51-djangorestframework315
- python: "3.13"
TOXENV: py313-django51-djangorestframework315
- python: "3.10"
TOXENV: py310-django52-djangorestframework315
- python: "3.11"
TOXENV: py311-django52-djangorestframework315
- python: "3.12"
TOXENV: py312-django52-djangorestframework315
- python: "3.13"
TOXENV: py313-django52-djangorestframework315
# DRF 3.16
- python: "3.11"
TOXENV: py311-django50-djangorestframework316
- python: "3.12"
TOXENV: py312-django50-djangorestframework316
- python: "3.13"
TOXENV: py313-django50-djangorestframework316
- python: "3.11"
TOXENV: py311-django51-djangorestframework316
- python: "3.12"
TOXENV: py312-django51-djangorestframework316
- python: "3.13"
TOXENV: py313-django51-djangorestframework316
- python: "3.11"
TOXENV: py311-django52-djangorestframework316
- python: "3.12"
TOXENV: py312-django52-djangorestframework316
- python: "3.13"
TOXENV: py313-django52-djangorestframework316
# DRF 3.17
- python: "3.11"
TOXENV: py311-django50-djangorestframework317
- python: "3.12"
TOXENV: py312-django50-djangorestframework317
- python: "3.13"
TOXENV: py313-django50-djangorestframework317
- python: "3.11"
TOXENV: py311-django51-djangorestframework317
- python: "3.12"
TOXENV: py312-django51-djangorestframework317
- python: "3.13"
TOXENV: py313-django51-djangorestframework317
- python: "3.11"
TOXENV: py311-django52-djangorestframework317
- python: "3.12"
TOXENV: py312-django52-djangorestframework317
- python: "3.13"
TOXENV: py313-django52-djangorestframework317
- python: "3.12"
TOXENV: py312-django60-djangorestframework317
- python: "3.13"
TOXENV: py313-django60-djangorestframework317
steps:
- uses: actions/checkout@v6
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Set up Python ${{ matrix.env.python }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.env.python }}
cache: "pip"
cache-dependency-path: |
**/requirements*.txt
- name: Install Dependencies
id: deps
run: |
sudo apt -qq update
sudo apt -qq -y install binutils libproj-dev gdal-bin
pip install -U pip wheel setuptools
pip install -U -r requirements-test.txt
pip install tox docutils pygments twine
- name: QA checks
run: |
./run-qa-checks
- name: Tests
if: ${{ !cancelled() && steps.deps.conclusion == 'success' }}
run: |
tox -e ${{ matrix.env.TOXENV }}
coverage combine
coverage xml
env:
POSTGRES_HOST: localhost
- name: Upload Coverage
if: ${{ success() }}
uses: coverallsapp/github-action@v2
with:
parallel: true
format: cobertura
flag-name: python-${{ matrix.env.env }}
github-token: ${{ secrets.GITHUB_TOKEN }}
coveralls:
needs: build
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@v2
with:
parallel-finished: true