Skip to content

v0.2.0_phasebridge

v0.2.0_phasebridge #2

Workflow file for this run

name: CI (core)
on:
push:
branches: [ "**" ]
pull_request:
branches: [ "**" ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
- name: Install package (editable) + test extras
run: |
python -V
pip install -U pip
# install SDK with binary formats & test tooling
pip install -e ".[all,dev]"
- name: Run unit tests
run: pytest -q