-
-
Notifications
You must be signed in to change notification settings - Fork 14
289 lines (279 loc) · 8.83 KB
/
code-quality.yaml
File metadata and controls
289 lines (279 loc) · 8.83 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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
name: Code quality checks
on:
push:
branches:
- master
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
pull_request:
branches:
- master
schedule:
- cron: "0 0 * * *"
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: [3.7, 3.8, 3.9]
exclude:
- os: windows-latest
python-version: 3.7
- os: windows-latest
python-version: 3.8
- os: macos-latest
python-version: 3.7
- os: macos-latest
python-version: 3.8
steps:
- uses: actions/checkout@v2.3.4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2.2.2
with:
python-version: ${{ matrix.python-version }}
- name: Install poetry
run: pip install poetry
- uses: actions/cache@v2.1.6
id: cache-poetry
with:
path: ~/.virtualenvs
key: ${{ runner.os }}-${{ matrix.os }}-${{ matrix.python-version }}-poetry-${{ hashFiles('poetry.lock', 'poetry.toml') }}
- name: Configure poetry for ci
run: |
poetry config virtualenvs.in-project false --local
poetry config virtualenvs.path ~/.virtualenvs --local
- name: Install dependencies
if: steps.cache-poetry.outputs.cache-hit != 'true'
run: |
poetry install
- name: Test with pytest
run: |
poetry run pytest || (poetry install && poetry run pytest)
- name: Test the examples
run: |
poetry run ./tests/test_examples
staticPython:
runs-on: ubuntu-latest
strategy:
matrix:
command:
- poetry run bandit -r open_alchemy -s B101,B303,B310
- poetry run rstcheck -r docs
steps:
- uses: actions/checkout@v2.3.4
- name: Set up Python
uses: actions/setup-python@v2.2.2
with:
python-version: 3.9
- name: Install poetry
run: pip install poetry
- uses: actions/cache@v2.1.6
id: cache-poetry
with:
path: ~/.virtualenvs
key: ${{ runner.os }}-poetry-${{ hashFiles('poetry.lock', 'poetry.toml') }}
- name: Configure poetry for ci
run: |
poetry config virtualenvs.in-project false --local
poetry config virtualenvs.path ~/.virtualenvs --local
- name: Install dependencies
if: steps.cache-poetry.outputs.cache-hit != 'true'
run: |
poetry install
- name: Run static code analyser
run: |
${{ matrix.command }} || (poetry install && ${{ matrix.command }})
staticNode:
runs-on: ubuntu-latest
strategy:
matrix:
command:
- npx cspell "open_alchemy/**/*.py" "open_alchemy/**/*.json" "open_alchemy/**/*.j2" "docs/**/*.rst" "docs/**/*/yml" "docs/**/*.yaml" "tests/**/*.py" "*.yaml" "*.json" "*.yml" "examples/**/*.py" "examples/**/*.yaml" "examples/**/*.yml"
- find examples -name "*spec.yml" ! -path "*/remote/*" ! -path "*/openapi-3-1/*" | xargs -n 1 sh -c 'npx swagger-cli validate $0 || exit 255'
steps:
- uses: actions/checkout@v2.3.4
- name: Set up Node
uses: actions/setup-node@v2.4.0
with:
node-version: 14.x
- name: Install dependencies
run: npm install cspell @apidevtools/swagger-cli
- name: Run static code analyser
run: |
${{ matrix.command }}
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.4
- name: Set up Python
uses: actions/setup-python@v2.2.2
with:
python-version: 3.9
- uses: pre-commit/action@v2.0.3
build:
runs-on: ubuntu-latest
needs:
- pre-commit
- test
- staticNode
- staticPython
steps:
- uses: actions/checkout@v2.3.4
- name: Set up Python
uses: actions/setup-python@v2.2.2
with:
python-version: 3.9
- name: Install poetry
run: pip install poetry
- uses: actions/cache@v2.1.6
id: cache-poetry
with:
path: ~/.virtualenvs
key: ${{ runner.os }}-poetry-${{ hashFiles('poetry.lock', 'poetry.toml') }}
- name: Configure poetry for ci
run: |
poetry config virtualenvs.in-project false --local
poetry config virtualenvs.path ~/.virtualenvs --local
- name: Install dependencies
if: steps.cache-poetry.outputs.cache-hit != 'true'
run: |
poetry install
- name: Build packages
run: poetry build
- name: Upload artifacts for release
if: startsWith(github.ref, 'refs/tags/')
uses: actions/upload-artifact@v2.2.4
with:
name: wheel
path: dist/
- name: Build the documentation
run: |
cd docs
poetry run make html || (poetry install && poetry run make html)
- name: Upload documentation for release
if: startsWith(github.ref, 'refs/tags/')
uses: actions/upload-artifact@v2.2.4
with:
name: docs
path: docs/build/html/
release-test-pypi:
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
needs:
- build
steps:
- name: Retrieve packages
uses: actions/download-artifact@v2.0.10
with:
name: wheel
path: dist/
- name: Publish distribution 📦 to Test PyPI
uses: pypa/gh-action-pypi-publish@v1.4.2
with:
password: ${{ secrets.test_pypi_password }}
repository_url: https://test.pypi.org/legacy/
test-production-test-pypi:
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
needs:
- release-test-pypi
steps:
- uses: actions/checkout@v2.3.4
- name: Set up Python
uses: actions/setup-python@v2.2.2
with:
python-version: 3.9
- name: install pipenv
run: |
python -m pip install --upgrade pip
pip install pipenv
- name: prepare tests
working-directory: tests/production
run: |
./prepare.sh
- name: install dependencies
env:
PYPI_MIRROR: https://test.pypi.org/simple/
working-directory: tests/production
run: |
pipenv install --dev
- name: run tests
working-directory: tests/production
run: |
pipenv run test
release-pypi:
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
needs:
- test-production-test-pypi
steps:
- name: Retrieve packages
uses: actions/download-artifact@v2.0.10
with:
name: wheel
path: dist/
- name: Publish distribution 📦 to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@v1.4.2
with:
password: ${{ secrets.pypi_password }}
repository_url: https://upload.pypi.org/legacy/
test-production-pypi:
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
needs:
- release-pypi
steps:
- uses: actions/checkout@v2.3.4
- name: Set up Python
uses: actions/setup-python@v2.2.2
with:
python-version: 3.9
- name: install pipenv
run: |
python -m pip install --upgrade pip
pip install pipenv
- name: prepare tests
working-directory: tests/production
run: |
./prepare.sh
- name: install dependencies
working-directory: tests/production
env:
PYPI_MIRROR: https://pypi.org/simple/
run: |
pipenv install --dev
- name: run tests
working-directory: tests/production
run: |
pipenv run test
release-github:
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
needs:
- test-production-pypi
steps:
- name: Get version from tag
id: tag_name
run: |
echo ::set-output name=current_version::${GITHUB_REF#refs/tags/v}
shell: bash
- uses: actions/checkout@v2.3.4
- name: Get latest Changelog Entry
id: changelog_reader
uses: mindsers/changelog-reader-action@v2
with:
version: v${{ steps.tag_name.outputs.current_version }}
path: ./CHANGELOG.md
- name: Create Release
id: create_release
uses: actions/create-release@v1.1.4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ steps.changelog_reader.outputs.version }}
release_name: Release ${{ steps.changelog_reader.outputs.version }}
body: ${{ steps.changelog_reader.outputs.changes }}
prerelease: ${{ steps.changelog_reader.outputs.status == 'prereleased' }}
draft: ${{ steps.changelog_reader.outputs.status == 'unreleased' }}