Skip to content

test: license-free pytest suite + shared/peak-safe res1d helpers (#6, #7, #8) #14

test: license-free pytest suite + shared/peak-safe res1d helpers (#6, #7, #8)

test: license-free pytest suite + shared/peak-safe res1d helpers (#6, #7, #8) #14

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
jobs:
smoke:
name: Install (pinned) and discover tools
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
architecture: "x64"
- name: Install pinned environment and package
run: |
python -m pip install --upgrade pip
pip install -r requirements.lock
pip install -e .
- name: Smoke test (license-free tool discovery)
run: python scripts/smoke_test.py
- name: Unit tests (license-free)
run: |
pip install pytest
pytest