Skip to content

feat: Added the initial implementation of KT-split #603

feat: Added the initial implementation of KT-split

feat: Added the initial implementation of KT-split #603

Workflow file for this run

name: Check for unlinked TODOs
on:
push:
branches:
- main
pull_request:
branches:
- "**"
jobs:
check-todos:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Upgrade pip
run: python -m pip install --upgrade pip
- name: Install Ruff
run: pip install ruff
- name: Check for unlinked TODOs
run: ruff check --select=TD --ignore=TD002