-
Notifications
You must be signed in to change notification settings - Fork 0
250 lines (199 loc) · 6.45 KB
/
python-pr.yml
File metadata and controls
250 lines (199 loc) · 6.45 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
name: Python PR
permissions:
contents: read
on:
pull_request:
branches: ["master"]
push:
branches: ["master"]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
comment:
name: Comment
runs-on: ubuntu-latest
permissions:
pull-requests: write
if: ${{ github.event_name == 'pull_request' && github.event.action == 'opened' }}
steps:
- name: Comment PR
uses: thollander/actions-comment-pull-request@v3
with:
message: |
:wave: Thank you for contributing this pull request!
This repository uses GitHub Actions to automatically run tests, build the project, and check code quality on each pull request.
Please address _all_ issues found by these checks to ensure a smooth review process.
Please review our [Contribution Guidelines](https://github.com/Koen1999/suricata-check/blob/master/CONTRIBUTING.md) to learn everything you should know about contributing to our project!
Note that for first time contributors, action workflows have to be approved first by the maintainers before they can run.
Please be patient, and a maintainer will review your PR soon! :pray:
test:
name: Quick Test
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ["3.10", "3.14"]
steps:
- uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
- name: Install dependencies
run: |
python -m pip install --upgrade --upgrade-strategy eager pip pip-tools suricata-check[performance]
pip-compile --extra test --extra ml -o requirements.txt pyproject.toml
pip install -r requirements.txt
- name: Test using pytest
run: |
pytest
build:
name: Build
runs-on: ${{ matrix.os }}
needs:
- test
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ["3.10", "3.14"]
steps:
- uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
- name: Install dependencies
run: |
python -m pip install --upgrade --upgrade-strategy eager pip build
- name: Build and install with pip
run: |
python -m build
pip install .
lint:
name: Lint
runs-on: ubuntu-latest
needs:
- test
strategy:
fail-fast: true
steps:
- uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v6
- name: Install dependencies
run: |
python -m pip install --upgrade --upgrade-strategy eager pip pip-tools setuptools-git-versioning
pip-compile --all-extras -o requirements-dev.txt pyproject.toml
pip install -r requirements-dev.txt
- name: Lint with flake8
run: |
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
- name: Type checking with Pyright
run: |
python -m pyright
- name: Lint with Black
run: |
black . --check
- name: Lint with Ruff
run: |
ruff check --output-format=github .
test-minimal:
name: Minimal Dependency Test
runs-on: ${{ matrix.os }}
needs:
- test
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ["3.10", "3.14"]
steps:
- uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
- name: Install dependencies
run: |
python -m pip install --upgrade --upgrade-strategy eager pip uv suricata-check[performance]
uv pip compile pyproject.toml --resolution lowest-direct --extra test --extra ml -o requirements-minimal.txt
pip install -r requirements-minimal.txt
- name: Test using pytest
run: |
pytest
lint-minimal:
name: Minimal Dependency Lint
runs-on: ubuntu-latest
needs:
- test-minimal
- lint
strategy:
fail-fast: true
steps:
- uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.10"
cache: "pip"
- name: Install dependencies
run: |
python -m pip install --upgrade --upgrade-strategy eager pip setuptools-git-versioning uv
uv pip compile pyproject.toml --resolution lowest-direct --all-extras -o requirements-minimal-dev.txt
pip install -r requirements-minimal-dev.txt
- name: Install Pyright
run: |
python -m pip install --upgrade --upgrade-strategy eager pyright
- name: Type checking with Pyright
run: |
python -m pyright
markdownlint:
name: Markdownlint
runs-on: ubuntu-latest
needs:
- lint
steps:
- name: Checkout repository
uses: actions/checkout@v5
- uses: dorny/paths-filter@v3
id: changes
with:
filters: |
src:
- "**/*.md"
- name: Setup Node.js
if: steps.changes.outputs.src == 'true'
uses: actions/setup-node@v6
- name: Install markdownlint-cli2
if: steps.changes.outputs.src == 'true'
run: npm install -g markdownlint-cli2
- name: Run Markdownlint
if: steps.changes.outputs.src == 'true'
run: markdownlint-cli2 "**/*.md"
docs:
name: Docs
runs-on: ubuntu-latest
needs:
- markdownlint
strategy:
fail-fast: true
steps:
- uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v6
- name: Install dependencies
run: |
python -m pip install --upgrade --upgrade-strategy eager pip pip-tools
pip-compile --all-extras -o requirements-dev.txt pyproject.toml
pip install -r requirements-dev.txt
- name: Generate docs with sphinx
run: |
cd docs
make clean
make html