Skip to content

chore: split cli and functions #6

chore: split cli and functions

chore: split cli and functions #6

Workflow file for this run

name: Lint
on:
push:
paths:
- '**.py'
- '.github/workflows/lint.yml'
- 'pyproject.toml'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install '.[dev]'
- name: Lint with pylint
run: |
pylint $(git ls-files '*.py')
- name: Check typing with mypy
run: |
mypy