Skip to content

feat: expose write_phenotype_id option in python #29

feat: expose write_phenotype_id option in python

feat: expose write_phenotype_id option in python #29

Workflow file for this run

on: [push, pull_request]
name: Test package
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- uses: actions-rs/cargo@v1
with:
command: test
test-python:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- run: curl -LsSf https://astral.sh/uv/install.sh | sh
- run: source $HOME/.cargo/env
- run: uv venv --python ${{ matrix.python-version }}
- run: uv pip install ruff pytest
- run: uv sync
- run: uv run ruff check
- run: uv run pytest -v