Skip to content

📝 Update GitHub-related links #21

📝 Update GitHub-related links

📝 Update GitHub-related links #21

Workflow file for this run

name: 🎨 Linters
on:
push:
branches:
- master
- main
pull_request:
jobs:
lint:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ["3.10"]
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 kiss_headers