Skip to content

add pilnu samples with lfs #12

add pilnu samples with lfs

add pilnu samples with lfs #12

Workflow file for this run

name: Tests
on: [push]
jobs:
tests:
runs-on: ubuntu-latest
#container: python:3.10 # optional
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel
python -m pip install --upgrade --pre -r requirements.txt
python -m pip install -e ./
- name: List installed Python packages
run: python -m pip list
- name: Run tests with pytest
run: pytest