Skip to content

Change runs on for CUDA GPU workflow #3

Change runs on for CUDA GPU workflow

Change runs on for CUDA GPU workflow #3

Workflow file for this run

---
name: CUDA GPU
on:
workflow_dispatch:
push:
pull_request:
branches:
- master
jobs:
unit-tests:
name: 🧪 Unit Tests
runs-on: ubuntu-gpu
strategy:
fail-fast: false
matrix:
python-version: ["3.11"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: |
pip3 install --no-compile .
pip3 install --no-compile ./library[extras]
pip3 install --no-compile ./matrix
- name: Test
run: task test