Skip to content

correct indentation and repo checkout #19

correct indentation and repo checkout

correct indentation and repo checkout #19

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"
- name: Install dependencies
run: |
pip install .
- name: Verify CUDA installation
run: |
nvcc --version
python -c "import torch; print(torch.cuda.is_available())"