-
Notifications
You must be signed in to change notification settings - Fork 14
133 lines (108 loc) · 3.96 KB
/
Copy pathci-python3.yml
File metadata and controls
133 lines (108 loc) · 3.96 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
# This is a basic workflow to help you get started with Actions
name: CI python3
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches: [ python3 ]
pull_request:
branches: [ python3 ]
workflow_dispatch:
schedule:
- cron: '37 15 * * 5'
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
lint:
# The type of runner that the job will run on
runs-on: ubuntu-24.04
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.15'
allow-prereleases: true
check-latest: true
- name: Install lint dependencies
run: |
pip install --group ci
pip list
- name: Run flake
run: flake8 --exclude=build,venv --ignore= --max-line-length=200 --max-complexity=75 --show-source --statistics .
- name: Check package quality
run: pyroma -n 10 .
- name: Check the completeness of MANIFEST.in
run: check-manifest .
- name: Check distribution
run: |
python -m build
twine check dist/*
test:
# The type of runner that the job will run on
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-24.04, ubuntu-22.04 ]
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14', '3.15' ]
# Exclude unsupported OS/Python version combinations
exclude:
- os: ubuntu-24.04
python-version: '3.7'
- os: ubuntu-24.04
python-version: '3.8'
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
check-latest: true
- name: Install test dependencies
run: |
sudo apt install coreutils cksfv b3sum
- name: Check syntax by compiling code
run: python -W error -bb -m compileall -f .
- name: Run unit tests
run: python -W error -bb test/test.py --unit --exit-early
- name: Run integration tests (internal)
run: |
ulimit -n
ulimit -n 4096
python -W error -bb test/test.py -i --exit-early
- name: Run integration tests (external process)
run: |
ulimit -n
ulimit -n 4096
test/test.py -e --exit-early
- name: Install optional dependencies
continue-on-error: ${{ contains(fromJson('["3.15"]'), matrix.python-version) }}
run: |
# pillow dependencies
sudo apt install libjpeg8-dev zlib1g-dev libtiff5-dev libwebp-dev libopenjp2-7-dev libavif-dev
pip install .[full]
pip list
- name: Run unit tests (with optional dependencies)
run: python -W error -bb test/test.py --unit --exit-early
- name: Run integration tests (internal, with optional dependencies)
run: |
ulimit -n
ulimit -n 4096
python -W error -bb test/test.py -i --exit-early
- name: Run integration tests (external process, with optional dependencies)
run: |
ulimit -n
ulimit -n 4096
test/test.py -e --exit-early
- name: Install build dependencies
run: |
# Fallback hack required for pip < 25.1 (since newer pip is not available for Python < 3.9)
pip install --group build || pip install build
pip list
- name: Build
run: |
python -m build