Skip to content

... still working on tests & types #387

... still working on tests & types

... still working on tests & types #387

name: MyPy and Pylint Checks
on:
pull_request:
push:
jobs:
mypy:
runs-on: ubuntu-latest
name: MyPy
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- run: pip install --upgrade pip
- run: pip install .[dev]
- run: mypy $(git ls-files 'countess/*.py')
pylint:
runs-on: ubuntu-latest
name: PyLint
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- run: pip install --upgrade pip
- run: pip install .[dev]
- run: pylint $(git ls-files 'countess/*.py')