Skip to content

Add linting and type checking #1

Add linting and type checking

Add linting and type checking #1

Workflow file for this run

name: CI
on:
pull_request:
push:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ">=3.10"
cache: "pip"
- name: Install dependencies
run: |
pip install .
pip install pylint
- name: pre-commit
uses: pre-commit/[email protected]
- name: pyright
uses: jakebailey/pyright-action@v2
- name: pylint
run: pylint zmk