Skip to content

fix: Handle CLI unpacking error and release v2.0.1 #72

fix: Handle CLI unpacking error and release v2.0.1

fix: Handle CLI unpacking error and release v2.0.1 #72

Workflow file for this run

name: Python CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
pip install -e .[dev,document,code] coveralls
- name: Test with pytest and generate coverage report
run: |
pytest --cov=src/chunklet --cov-report=xml tests
- name: Upload coverage to Coveralls
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
run: |
coveralls --service=github