test: license-free pytest suite + shared/peak-safe res1d helpers (#6, #7, #8) #14
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |