Skip to content

skip the range tests #12

skip the range tests

skip the range tests #12

name: Python Extension CI
on:
push:
branches:
- main
permissions:
contents: read
jobs:
build-and-test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "${{ matrix.version }}"
- name: Install test dependencies
run: |
python -m pip install -r requirements.txt
- name: Build Python extension
run: |
python -m pip install -e .
- name: Run tests with pytest
run: |
pytest