Skip to content

CI: Temporarily remove hardware test #305

CI: Temporarily remove hardware test

CI: Temporarily remove hardware test #305

Workflow file for this run

name: Check & Test Code
on:
- push
jobs:
os-python-matrix:
strategy:
matrix:
os:
- name: macos
icon: 🍏
- name: ubuntu
icon: 🐧
- name: windows
icon: 🪟
python-version:
- '3.12'
- '3.13'
- '3.14'
runs-on: ${{ matrix.os.name }}-latest
name: ${{ matrix.os.icon }} Python ${{ matrix.python-version }}
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python-version }}
- name: Install just
uses: taiki-e/install-action@just
- name: Check and test code base
run: just test-no-hardware