Skip to content

Parallel CI

Parallel CI #65

Workflow file for this run

name: Build
on:
pull_request:
push:
branches:
- master
jobs:
conda-build:
name: Build Conda Package on ${{ matrix.os }} for Python ${{ matrix.python }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-13, macos-14]
python: [ "3.8", "3.9", "3.10", "3.11"]
defaults:
run:
shell: bash -el {0}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: conda-incubator/setup-miniconda@v3
with:
python-version: 3.8
channels: conda-forge
activate-environment: devtools
environment-file: conda-recipes/devtools.yml
- name: Run 'conda build'
run: |
conda build -c vanderaa --python ${{ matrix.python }} smurff
working-directory: conda-recipes