Skip to content

Add manual trigger to CI workflow #1

Add manual trigger to CI workflow

Add manual trigger to CI workflow #1

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
- name: Build distribution
run: python setup.py sdist bdist_wheel