Skip to content

Cmake version and CI python version upgrades #229

Cmake version and CI python version upgrades

Cmake version and CI python version upgrades #229

Workflow file for this run

name: Wrap CI for Linux
on: [pull_request]
jobs:
build:
name: Tests for 🐍 ${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Install Dependencies
run: |
sudo apt-get -y update
sudo apt install cmake build-essential pkg-config
- name: Install uv and set the ${{ matrix.python-version }}
uses: astral-sh/setup-uv@v6
with:
python-version: ${{ matrix.python-version }}
- name: Python Dependencies
run: uv sync --locked --all-extras --dev
- name: Build and Test
run: |
# Build
cmake .
# Use Pytest to run all the tests.
uv run pytest tests