Skip to content

Add type checking

Add type checking #150

Workflow file for this run

name: Style
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_call:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install dependencies
run: |
pip install -U pip
pip install ruff
- name: Run ruff
run: |
ruff check komodoenv tests
ruff format komodoenv tests --check