FEAT Add QuadraticHessian datafit (#279) #1583
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: 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' |