Skip to content

switched the order of shuffles and lambdas loops #28

switched the order of shuffles and lambdas loops

switched the order of shuffles and lambdas loops #28

Workflow file for this run

name: Tests
on:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install system dependencies
run: sudo apt-get install -y libblas-dev liblapack-dev
- name: Install Poetry
uses: snok/install-poetry@v1
with:
virtualenvs-create: true
virtualenvs-in-project: true
- name: Cache dependencies
uses: actions/cache@v4
with:
path: .venv
key: venv-${{ hashFiles('pyproject.toml') }}
- name: Install dependencies
run: poetry install --no-interaction
- name: Run tests
run: poetry run pytest tests/