Skip to content

Fixed return type typo #16

Fixed return type typo

Fixed return type typo #16

Workflow file for this run

name: Run Unit Tests
on:
push:
paths:
- '**.py'
jobs:
build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Add conda to system path
run: |
echo $CONDA/bin >> $GITHUB_PATH
- name: Install dependencies
run: |
conda env update --file environment.yml --name base
pip install .
- name: Test with pytest
run: |
pytest hdp/tests/