Skip to content
This repository was archived by the owner on Feb 24, 2026. It is now read-only.

Add deprecation notice and migration guidance #204

Add deprecation notice and migration guidance

Add deprecation notice and migration guidance #204

Workflow file for this run

name: Tests
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.13'
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
make install
- name: Run unit tests
run: |
. .venv/bin/activate
make test