Modular bld #12
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
test-w-conda-recipe: | |
strategy: | |
matrix: | |
os: [macos-latest, windows-latest, ubuntu-latest] | |
python: ["3.8", "3.9", "3.10"] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
submodules: true | |
- uses: conda-incubator/setup-miniconda@v2 | |
with: | |
auto-update-conda: true | |
auto-activate-base: true | |
activate-environment: "" | |
channel-priority: strict | |
miniforge-variant: Mambaforge | |
use-mamba: true | |
- name: install common dependencies | |
run: mamba install -n base -c conda-forge conda-build boa -y | |
- name: linux conda build | |
if: matrix.os == 'ubuntu-latest' | |
shell: bash -l {0} | |
run: conda mambabuild -c conda-forge --python=${{ matrix.python }} conda-recipe | |
- name: osx conda build | |
if: matrix.os == 'macos-latest' | |
shell: bash -l {0} | |
run: conda mambabuild -c conda-forge --python=${{ matrix.python }} conda-recipe | |
- name: windows conda build | |
if: matrix.os == 'windows-latest' | |
shell: cmd /C CALL {0} | |
run: conda mambabuild -c conda-forge --python=${{ matrix.python }} conda-recipe |