Skip to content

fix pycodestyle

fix pycodestyle #6

Workflow file for this run

---
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/*.yml'
- '.config/pycodestyle.cfg'
pull_request:
branches:
- 'feature/**'
- 'fix/**'
- '!doc/**'
paths:
- 'plugins/**'
- '!roles/**'
- '!.github/workflows/*.yml'
- '.config/pycodestyle.cfg'
jobs:
pycodestyle:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python_version:
- "3.10"
- "3.11"
- "3.12"
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 --exclude=hooks/*.py