Skip to content

Remove deprecated items slated for removal in v0.4.0 #778

Remove deprecated items slated for removal in v0.4.0

Remove deprecated items slated for removal in v0.4.0 #778

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.13
uses: actions/setup-python@v5
with:
python-version: "3.13"
- 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