-
Notifications
You must be signed in to change notification settings - Fork 1
38 lines (32 loc) · 813 Bytes
/
flake8.yaml
File metadata and controls
38 lines (32 loc) · 813 Bytes
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
name: flake8
on:
push:
branches-ignore: [main]
pull_request:
branches: [main]
permissions: {}
jobs:
flake8:
name: flake8 Python ${{ matrix.python-version }}
permissions:
contents: read
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- name: Checkout repository
uses: actions/checkout@v5
with:
persist-credentials: false
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Run flake8 lint
uses: py-actions/flake8@v2
with:
max-line-length: 88
path: sz_tools
plugins: flake8-black