Skip to content

excluded mac and win from testing #73

excluded mac and win from testing

excluded mac and win from testing #73

Workflow file for this run

name: Continuous Integration
on: [push]
jobs:
build:
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
os: [ubuntu-latest] #, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Python all python version
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Install torchTT
run: pip install .
- name: Run Test
run: python -m pytest tests/