Skip to content

ci

ci #1

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python:
- '3.11'
- '3.12'
- '3.13'
torch:
- '2.2.0'
name: Python ${{ matrix.python }}, Torch ${{ matrix.torch }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: pip3 install -r requirements.txt
- name: Install torch
run: pip3 install --upgrade torch==${{ matrix.torch}}
- name: Run Black
run: black . --check
# - name: Run pyright
# uses: jakebailey/pyright-action@v1.8.1
# - name: Run pytest
# run: |
# export PYTHONPATH=$(pwd)
# pytest tests