Skip to content

Add project links (#3) #45

Add project links (#3)

Add project links (#3) #45

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
# Check all PR
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: ubuntu-22.04
python-version: "3.9"
- os: ubuntu-22.04
python-version: "3.13"
- os: macos-14
python-version: "3.13"
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: python -m pip install tox
- name: Test package
run: tox
env:
PIP_EXTRA_INDEX_URL: https://download.pytorch.org/whl/cpu