From f467060bcf13bb577f3e0ccbe6bd32e59546e515 Mon Sep 17 00:00:00 2001 From: Cosmin Ciocan Date: Tue, 2 Jan 2024 15:26:46 +0100 Subject: [PATCH] Install nvidia toolkit for testing --- .github/workflows/test.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9d669a0..8a87fb6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -27,7 +27,12 @@ jobs: with: python-version: ${{ matrix.python-version }} - - name: Install dependencies + - name: Install CUDA tools + run: | + apt update + apt install nvidia-cuda-toolkit + + - name: Install Python dependencies run: | python -m pip install --upgrade pip pip install -r tests/requirements.txt