DOC: Update derivation equations of positive Group Lasso penalty #1816
Workflow file for this run
This file contains hidden or 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','D105','D107','D203','D213','D413', |