Skip to content

copyedit

copyedit #92

Workflow file for this run

name: Conda build and test
on:
push:
branches:
- main
- dev
pull_request:
release:
jobs:
build:
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash -l {0}
strategy:
matrix:
os: ["ubuntu-latest", "macos-13", "windows-latest"]
steps:
- uses: actions/checkout@v3
- name: Install Conda environment
uses: mamba-org/setup-micromamba@v1
with:
cache-downloads: true
cache-environment: true
environment-file: environment.yml
environment-name: quant
init-shell: >-
bash
- name: Test
run: |
source .github/workflows/executor.sh
shell: bash -el {0}