Skip to content

[NOMRG] debug script for pdcdws & pinball #1573

[NOMRG] debug script for pdcdws & pinball

[NOMRG] debug script for pdcdws & pinball #1573

Workflow file for this run

name: linter
on:
push:
branches:
- 'main'
pull_request:
branches:
- 'main'
jobs:
lint:
name: Lint code base
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Lint with flake
run: |
pip install flake8
flake8 skglm/ --max-line-length=88
- name: Check doc style with pydocstyle
run: |
pip install pydocstyle
pydocstyle skglm --ignore='D100',D102,'D104','D107','D203','D213','D413'