Skip to content

change kwargs in read4stem #334

change kwargs in read4stem

change kwargs in read4stem #334

Workflow file for this run

name: PyTests
on:
pull_request:
branches:
- dev
- main
jobs:
uv-pytests:
name: ${{ matrix.os }} / python ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
# Test other OSs main branch PRs
os: ${{ github.base_ref == 'main' && fromJSON('["ubuntu-latest", "windows-latest", "macos-latest"]') || fromJSON('["ubuntu-latest"]') }}
python-version:
- "3.11"
- "3.12"
- "3.13"
- "3.14"
steps:
- uses: actions/checkout@v6
- name: Install uv and set python version
uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python-version }}
- name: Install the project
run: uv sync --locked --group test
- name: Run pytests
run: uv run pytest tests