Skip to content

add windows nvme support #76

add windows nvme support

add windows nvme support #76

Workflow file for this run

name: tests
on:
push:
branches:
- main
- dev
pull_request:
jobs:
test:
name: Running tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12", "3.13"]
env:
OS: ubuntu-latest
PYTHON: ${{ matrix.python-version }}
steps:
- uses: actions/[email protected]
- name: Set up Python ${{ matrix.python-version }}
uses: actions/[email protected]
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
run: pip install uv
- name: Installing dependencies (Python)
run: uv sync --all-extras
- name: Running tests
run: uv run pytest
- name: Building docs
run: cd docs && uv run make clean html