Skip to content

trying with other osx versions #73

trying with other osx versions

trying with other osx versions #73

Workflow file for this run

name: Run tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11"]
max-parallel: 4 # Adjust as needed
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Check CMake version
run: cmake --version
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install torch
- name: Build and install the package
run: python setup.py install
- name: Run unit tests
run: |
cd test
python runtests.py