lint plugins #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
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 . |