Skip to content

Merge pull request #248 from tttamaki/dev_ConsensusADMM_fix #625

Merge pull request #248 from tttamaki/dev_ConsensusADMM_fix

Merge pull request #248 from tttamaki/dev_ConsensusADMM_fix #625

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:
- uses: actions/checkout@v4
- name: Get history and tags for SCM versioning to work
run: |
git fetch --prune --unshallow
git fetch --depth=1 origin +refs/tags/*:refs/tags/*
- 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/