Skip to content

fixed platform type mismatch (fixes #40) #36

fixed platform type mismatch (fixes #40)

fixed platform type mismatch (fixes #40) #36

Workflow file for this run

name: Package Test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools
pip install .
pip install .[test]
- name: Testing package with pytest
run: |
cythonize -i src/bitermplus/*.pyx
pytest -s