Skip to content

feat: Added support for PyTorch Lightning in the DDP backend. (#162) #1340

feat: Added support for PyTorch Lightning in the DDP backend. (#162)

feat: Added support for PyTorch Lightning in the DDP backend. (#162) #1340

Workflow file for this run

name: tests
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
on:
workflow_dispatch:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
tests:
strategy:
fail-fast: false
matrix:
python-version: ['3.10', '3.11', '3.12']
os: [ubuntu-latest, macos-latest, windows-latest]
defaults:
run:
shell: bash
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: install the latest version uv
uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python-version }}
version: latest
enable-cache: true
prune-cache: false
cache-dependency-glob: "**/pyproject.toml"
- name: run tests
run: uv run --all-extras pytest -m "" # Run all markers