Skip to content

Fix setup.py

Fix setup.py #37

Workflow file for this run

name: Trial run
on:
push:
branches: [main]
pull_request:
branches: [main]
repository_dispatch:
types: [build]
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- uses: mamba-org/setup-micromamba@v1
with:
environment-file: environment.yml
init-shell: >-
bash
cache-environment: true
- name: Get data
run: python setup.py --nrows 256 --ncols 500
shell: bash -el {0}
- name: Set up a test instance to track run
run: lamin init --storage ./testdb
shell: bash -el {0}
- name: Run benchmark
run: python figure_2_iteration_bechmark.py --test
shell: bash -el {0}