Skip to content

Use conda-lock for tests #30

Use conda-lock for tests

Use conda-lock for tests #30

Workflow file for this run

name: conda-lock
on:
pull_request:
types: [opened, synchronize]
branches: [master]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install conda-lock with Micromamba
uses: mamba-org/setup-micromamba@v1
with:
environment-name: ci
create-args: conda-lock
init-shell: bash
- name: Run conda-lock
run: conda-lock --mamba -f environment.yml -p osx-64 -p linux-64 -p win-64 --lockfile ${{ runner.temp }}/conda-lock.yml
shell: bash -el {0}