fix: sync __version__ to 0.8.0 #50
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |