Skip to content

remove pytorch from the environment.yml #29

remove pytorch from the environment.yml

remove pytorch from the environment.yml #29

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.12"]
env:
OS: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: x64
# - name: Install CUDA Toolkit
# uses: Jimver/[email protected]
# with:
# cuda: "12.4.0"
# linux-local-args: '["--toolkit"]'
- name: Install dependencies
run: |
pip install .[test]
# - name: Verify CUDA installation
# run: |
# nvcc --version
# python -c "import torch; print(torch.cuda.is_available())"
- name: Run tests and generate coverage report
run: |
pytest -v --cov=serapeum --cov-report=xml