Skip to content

Overhaul the devops side of the project. #179

Overhaul the devops side of the project.

Overhaul the devops side of the project. #179

Workflow file for this run

# This workflows will upload a Python Package using Twine when a release is created
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries
name: Test Python Package
on: [pull_request, workflow_dispatch]
jobs:
deploy:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.x']
name: Python ${{ matrix.python-version }} sample
steps:
- uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools pytest wheel
- name: Run basic tests
run: |
pip install .[all]
pytest ./tests/cfb
pytest ./tests/mbb