Skip to content

Switch to uv for dependency management #342

Switch to uv for dependency management

Switch to uv for dependency management #342

Workflow file for this run

name: NiaARM
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ['3.11', '3.12', '3.13', '3.14']
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v6
- name: Install uv and set up Python
uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python-version }}
enable-cache: true
- name: Install the project
run: uv sync --locked --all-extras --group test
- name: Run tests
run: uv run pytest