🐛 Fix parse_it when given Mapping contains unattended types (#51) #15
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: 🎨 Linters | |
on: | |
push: | |
branches: | |
- master | |
- main | |
pull_request: | |
jobs: | |
lint: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: [3.9] | |
os: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
pip install -U pip build wheel | |
pip install -r dev-requirements.txt | |
- name: Install the package | |
run: | | |
pip install . | |
- name: Type checking (Mypy) | |
run: | | |
mypy kiss_headers | |
- name: Import sorting check (isort) | |
run: | | |
isort --check kiss_headers | |
- name: Code format (Black) | |
run: | | |
black --check --diff --target-version=py37 kiss_headers |