-
Notifications
You must be signed in to change notification settings - Fork 0
67 lines (60 loc) · 1.4 KB
/
linter.yml
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
---
name: lint plugins
on:
workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
required: true
default: 'warning'
type: choice
options:
- info
- warning
- debug
push:
branches:
- 'feature/**'
- 'fix/**'
- '!doc/**'
paths:
- 'plugins/**'
- '!roles/**'
- '!.github/workflows/*'
- '.config/pycodestyle.cfg'
pull_request:
branches:
- 'feature/**'
- 'fix/**'
- '!doc/**'
paths:
- 'plugins/**'
- '!roles/**'
- '!.github/workflows/*'
- '.config/pycodestyle.cfg'
jobs:
pycodestyle:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python_version:
- "3.10"
- "3.11"
- "3.13"
steps:
- name: Check out the codebase.
uses: actions/checkout@v4
with:
ref: ${{ github.event.workflow_run.head_branch }}
- name: 🐍 set up python
uses: actions/setup-python@v5
with:
python-version: "${{ matrix.python_version }}"
- name: Install test dependencies.
run: |
python3 -m pip install --upgrade pip
python3 -m pip install pycodestyle
- name: Lint code.
run: |
pycodestyle plugins/ --config=.config/pycodestyle.cfg --statistics --count --exclude=test_*.py .