Skip to content

Small experiment

Small experiment #695

Workflow file for this run

name: Test
on: [push]
jobs:
test:
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest", "macos-latest"]
python-version: ["3.9", "3.10"]
name: Test (${{ matrix.python-version }}, ${{ matrix.os }})
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v2
- uses: conda-incubator/setup-miniconda@v2
with:
mamba-version: "*"
channels: conda-forge
activate-environment: celeri
environment-file: environment.yml
python-version: ${{ matrix.python-version }}
- name: Install
run: |
pip install --no-use-pep517 -e .
- name: Test
run: |
pytest ./tests/test_basic.py ./celeri/celeri_closure.py