Skip to content

Add new reuseable Action for pyGSTi testing. #3

Add new reuseable Action for pyGSTi testing.

Add new reuseable Action for pyGSTi testing. #3

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Build and run tests (No Cython)
on:
push:
branches: [ "beta", "master" ]
pull_request:
branches: [ "**:**" ]
# Allow running manually from Actions tab
workflow_dispatch:
env:
SKIP_DEAP: 1
jobs:
build: # Main build + unit test check
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: [3.8, 3.9, '3.10', '3.11']
steps:
- uses: actions/checkout@v4
- name: Set up installation environment (Ubuntu or Windows)
if: ${{matrix.os == 'ubuntu-latest' || matrix.os == 'windows-latest'}}
run: |
./.github/ci-scripts/before_install.sh
- name: Set up installation environment (MacOS)
if: ${{matrix.os == 'macos-latest'}}
run: |
./.github/ci-scripts/before_install_macos.sh
conda install cvxopt
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Cache pip packages
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('setup.py') }}-${{ hashFiles('**/*requirements.txt') }}
- name: Install package
run: |
python -m pip install --upgrade pip
python -m pip install wheel
python -m pip install flake8
python -m pip install -e .[testing_no_cython]
- name: Run unit tests
run: |
python -Ic "import pygsti; print(pygsti.__version__); print(pygsti.__path__)"
python -m pytest -n auto --dist loadscope --cov=pygsti test/unit