Skip to content

Build: modernization of build process #621

Build: modernization of build process

Build: modernization of build process #621

Workflow file for this run

name: PyProximal-testing
on:
pull_request:
types: [opened, synchronize, reopened]
push:
branches:
- main
- dev
jobs:
build:
strategy:
matrix:
platform: [ ubuntu-latest, macos-latest ]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
runs-on: ${{ matrix.platform }}
steps:
- name: Check out source repository
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Install uv with Python ${{ matrix.python-version }}
uses: astral-sh/setup-uv@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies and pyproximal
run: uv sync --locked --all-extras --all-groups
- name: Test with pytest
run: uv run pytest --color=yes pytests/