Skip to content

updated logo

updated logo #30

Workflow file for this run

name: Python CI
on:
push:
branches:
- main
pull_request:
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 dependencies
run: |
python -m pip install pip
python -m pip install -r requirements.txt
- name: Build and install Python extension
run: |
python -m pip install -e .
- name: Run tests with pytest
run: |
pytest