forked from urwid/urwid
-
Notifications
You must be signed in to change notification settings - Fork 1
239 lines (217 loc) · 6.91 KB
/
Copy pathpythonpackage.yml
File metadata and controls
239 lines (217 loc) · 6.91 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
name: Python package
on:
push:
branches-ignore:
- 'dependabot/**'
- 'gh-pages'
tags:
- "[0-9]+.[0-9]+.[0-9]+" # Canonical versioned tags
- "[0-9]+.[0-9]+.[0-9]+.post[0-9]+" # Canonical rebuild tags
pull_request: {}
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
Test:
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 6
matrix:
os: [ "ubuntu-latest" ] # , "macos-latest", "windows-latest" # enable windows after Windows driver will be added
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11", "3.12" ]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # need for setuptools_scm
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4.7.0
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
cache: 'pip'
- name: Install Ubuntu dependencies
if: runner.os == 'Linux'
run: |
sudo apt-get -qq update
sudo apt-get install -y python3-gi gobject-introspection libgirepository1.0-dev
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel
pip install -r test_requirements.txt PyGObject
- name: Install package for test
run: pip install -e .
- name: Test
run: |
coverage run -m unittest discover -s urwid -v
coverage report
coverage xml
- name: Coveralls Parallel
uses: coverallsapp/github-action@v2
with:
flag-name: run-${{ matrix.python-version }}-${{ matrix.os }}"
parallel: true
file: coverage.xml
UploadCoverage:
name: Upload coverage to Coveralls
needs: [ Test ]
if: ${{ always() }}
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@v2
with:
parallel-finished: true
Isort:
name: Validate import sorting
runs-on: ubuntu-latest
needs: [ Test ]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install --upgrade isort
- name: Check imports with isort
run: |
isort --check --diff urwid/event_loop urwid/widget urwid/font.py urwid/escape.py urwid/command_map.py examples
Black:
name: Validate black formatting
runs-on: ubuntu-latest
needs: [ Test ]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install --upgrade black regex
- name: Check code style with black
run: |
black --check urwid/event_loop urwid/widget urwid/font.py urwid/escape.py urwid/command_map.py examples
Ruff:
name: Check with Ruff
runs-on: ubuntu-latest
needs: [ Test ]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install --upgrade ruff
- name: Lint with ruff
run: |
ruff --format github urwid/event_loop urwid/widget urwid/font.py urwid/escape.py urwid/command_map.py examples
build_wheels:
name: Build wheels on ${{ matrix.os }}
needs: [ Test, Isort, Black, Ruff ]
# build only on push: heavy job
if: github.event_name == 'push'
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ "ubuntu-latest", "macos-latest" ]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # need for setuptools_scm
# Used to host cibuildwheel
- uses: actions/setup-python@v4.7.0
with:
python-version: "3.11"
- name: Set up QEMU
if: runner.os == 'Linux'
uses: docker/setup-qemu-action@v3
with:
platforms: all
- name: Build wheels
uses: pypa/cibuildwheel@v2.16.0
env:
# configure cibuildwheel to build native archs ('auto'), and some
# emulated ones
CIBW_ARCHS_LINUX: auto aarch64
CIBW_ARCHS_MACOS: x86_64 universal2 arm64
- uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*.whl
name: wheels
retention-days: 3
build_sdist:
name: Build source distribution
needs: [ Test, Isort, Black, Ruff ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # need for setuptools_scm
- uses: actions/setup-python@v4.7.0
with:
python-version: "3.11"
- name: Install dependencies
run: pip install -U build
- name: Build sdist
run: python -m build -s
- uses: actions/upload-artifact@v3
with:
path: dist/*.tar.gz
name: wheels
retention-days: 3
Metadata:
name: Validate metadata
runs-on: ubuntu-latest
needs: [ build_sdist ]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install --upgrade twine
- uses: actions/download-artifact@v3
with:
# unpacks default artifact into dist/
# if `name: wheels` is omitted, the action will create extra parent dir
name: wheels
path: dist
- name: Validate metadata
run: |
twine check dist/*
upload_pypi:
needs: [ build_wheels, build_sdist, Metadata ]
# upload to PyPI on every tag
if: github.event_name == 'push' && github.ref_type == 'tag'
# alternatively, to publish when a GitHub Release is created, use the following rule:
# if: github.event_name == 'release' && github.event.action == 'published'
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/urwid
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
steps:
- uses: actions/download-artifact@v3
with:
# unpacks default artifact into dist/
# if `name: wheels` is omitted, the action will create extra parent dir
name: wheels
path: dist
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1