Skip to content

Fix compaction bug. #50

Fix compaction bug.

Fix compaction bug. #50

Workflow file for this run

name: test
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install --upgrade pip
pip install rich httpx prompt_toolkit
pip install -e .
- name: Run tests
run: python -m unittest discover -s tests -v
- name: Build package
run: |
pip install build
python -m build