remove the index-url
#13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
python-version: ["3.12"] | |
env: | |
OS: ${{ matrix.os }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Install CUDA Toolkit | |
uses: Jimver/[email protected] | |
with: | |
cuda: "12.4.0" | |
- name: Install dependencies | |
run: | | |
pip install .[dev] | |
- name: Verify CUDA installation | |
run: | | |
nvcc --version | |
python -c "import torch; print(torch.cuda.is_available())" |