Skip to content

Move MPS device check to cheetah.utils #7

Move MPS device check to cheetah.utils

Move MPS device check to cheetah.utils #7

Workflow file for this run

name: pytest-windows
on: [push, pull_request]
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
pip install -r test_requirements.txt
- name: Test with pytest
run: |
pytest