Skip to content

build: make lz4 dependency optional #1116

build: make lz4 dependency optional

build: make lz4 dependency optional #1116

name: "windows tests for 'kiara'"
# This workflow is triggered on pushes to the repository.
on: [push]
jobs:
test-windows:
name: pytest on windows
runs-on: windows-latest
strategy:
matrix:
python_version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: install uv
uses: astral-sh/setup-uv@v6
with:
enable-cache: true
- name: create lockfile
run: uv lock --python ${{ matrix.python_version }}
- name: add core_types plugin
run: uv add git+https://github.com/DHARPA-project/kiara_plugin.core_types@develop
- name: add tabular plugin
run: uv add git+https://github.com/DHARPA-project/kiara_plugin.tabular@develop
- name: install the project
run: uv sync --locked --dev --python ${{ matrix.python_version }}
- name: display installed kiara and module package versions
run: uv pip list | grep kiara
- name: Test with pytest
run: make test