Skip to content

fix publish ci

fix publish ci #320

Workflow file for this run

name: Code Checks
on:
push:
branches:
- main
- master
pull_request:
branches:
- main
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.11, 3.12, 3.13]
steps:
- uses: actions/checkout@v3
- name: Install OpenBLAS for SciPy
run: sudo apt-get update && sudo apt-get install -y libopenblas-dev
- 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 uv
uv sync --group test
- name: Test with pytest
run: |
uv run pytest