Skip to content

feat: allow arbitrary amount of MRL dimensions to train on as well as… #1

feat: allow arbitrary amount of MRL dimensions to train on as well as…

feat: allow arbitrary amount of MRL dimensions to train on as well as… #1

Workflow file for this run

name: Run Tests
on:
push:
branches:
- main
- 'releases/**'
pull_request:
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[dev,data]
- name: Run tests with pytest
run: pytest tests