Skip to content

Revert "code tidy"

Revert "code tidy" #16

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install
run: |
python -m pip install --upgrade pip
python -m pip install -e .
- name: Import check
run: |
python -c "import multiverse; from multiverse.datasets import list_datasets; print(list_datasets())"