Skip to content

new trial

new trial #79

Workflow file for this run

name: Continuous Integration
on: [push]
jobs:
buildandtest:
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@v4
- name: Set up Python all python version
uses: actions/setup-python@v4
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 pytorch
run: pip install torch torchvision torchaudio
- name: Show installed
run: pip list
- name: Install torchtt
run: python setup.py install
- name: Run Test
run: python -m pytest tests/