Skip to content

[WIP] Sort envs returned by REST API by current build's scheduled_on time #359

[WIP] Sort envs returned by REST API by current build's scheduled_on time

[WIP] Sort envs returned by REST API by current build's scheduled_on time #359

Workflow file for this run

name: "Build conda packages"
on:
push:
branches: [main]
pull_request:
branches:
- main
workflow_dispatch:
env:
FORCE_COLOR: "1" # Make tools pretty.
PYTHONUNBUFFERED: "1" # Keep stdout and stderr nice and tidy
permissions:
contents: read # This is required for actions/checkout
jobs:
# Always build & verify package.
build-package:
name: Build & verify package
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
# ubuntu 22.04, macos 14, windows 2022
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
steps:
- name: "Checkout Repository 🛎"
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: "Check conda builds 📦"
uses: jaimergp/conda-build-action@main
with:
artifact-name: 'conda-packages-${{ matrix.os }}'