Skip to content

add support for newer pip and CUDA computation versions #1807

add support for newer pip and CUDA computation versions

add support for newer pip and CUDA computation versions #1807

Workflow file for this run

name: tests
on:
push:
branches:
- main
- releases/*
pull_request:
paths:
- ".github/workflows/tests.yml"
- ".github/actions/setup-dev-env/**"
- "light_the_torch/**"
- "tests/**"
- ".coveragerc"
- "codecov.yml"
- "dodo.py"
- "pyproject.toml"
- "pytest.ini"
- "requirements-dev.txt"
schedule:
- cron: "0 4 * * *"
jobs:
unit:
strategy:
matrix:
os:
- ubuntu-latest
- windows-latest
- macos-latest
python-version:
- "3.8"
- "3.9"
- "3.10"
runs-on: ${{ matrix.os }}
env:
OS: ${{ matrix.os }}
PYTHON_VERSION: ${{ matrix.python-version }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup development environment
uses: ./.github/actions/setup-dev-env
with:
python-version: ${{ matrix.python-version }}
- name: Run unit tests
run: doit test
- name: Upload coverage
uses: codecov/codecov-action@v5
with:
flags: unit
env_vars: OS,PYTHON_VERSION