Skip to content

Update README.md

Update README.md #81

Workflow file for this run

name: lint
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
strategy:
max-parallel: 6
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[dev]
- name: flake8
run: |
flake8 --version
flake8 --count --show-source --statistics src/sparselm
# exit-zero treats all errors as warnings.
flake8 --count --exit-zero --max-complexity=20 --statistics src/sparselm
- name: black
run: |
black --version
black --check --diff --color src/sparselm
- name: pydocstyle
run: |
pydocstyle --version
pydocstyle --count src/sparselm
# Not in shape for this yet
# - name: pylint
# run: |
# pylint sparselm
#- name: mypy
# run: |
# mypy --version
# rm -rf .mypy_cache
# mypy sparselm