Skip to content

Feature/pr test workflow #4

Feature/pr test workflow

Feature/pr test workflow #4

Workflow file for this run

name: CI Validation
on:
push: {}
workflow_dispatch:
pull_request:
types: [opened, synchronize, reopened]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel
pip install -e .
pip install pytest
# - name: Run tests
# run: python -m pytest
# TODO: Add tests that exercise the package so pytest can run here before re-enabling this step.
# Build step is the current priority; it verifies packaging succeeds so we can re-enable tests later.
- name: Build distribution
run: python setup.py sdist bdist_wheel