Skip to content

fix: sync __version__ to 0.8.0 #50

fix: sync __version__ to 0.8.0

fix: sync __version__ to 0.8.0 #50

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install package with dev dependencies
run: pip install -e ".[dev]"
- name: Check version sync (pyproject vs chisel.__version__)
run: python scripts/check_version.py
- name: Lint with ruff
run: ruff check .
- name: Run tests with coverage
run: pytest tests/ -v --tb=short --cov=chisel --cov-report=term-missing
- name: Benchmark smoke (timing thresholds)
run: python scripts/benchmark_chisel.py